diff mbox series

board: xilinx: Add missing prototypes

Message ID 20230523055626.14742-1-ashok.reddy.soma@amd.com
State Accepted
Commit 6fe46936a3ea64a1c075661be3794e6ffbc3087e
Delegated to: Michal Simek
Headers show
Series board: xilinx: Add missing prototypes | expand

Commit Message

Ashok Reddy Soma May 23, 2023, 5:56 a.m. UTC
From: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>

Add missing prototypes to fix the below sparse warnings
1. warning: no previous prototype for 'soc_name_decode'
[-Wmissing-prototypes]
2. warning: no previous prototype for 'soc_detection'
[-Wmissing-prototypes]
3. warning: no previous prototype for 'board_name_decode'
[-Wmissing-prototypes]
4. warning: no previous prototype for 'board_detection'
[-Wmissing-prototypes]

Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@amd.com>
---

 board/xilinx/common/board.h | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Michal Simek May 30, 2023, 12:25 p.m. UTC | #1
On 5/23/23 07:56, Ashok Reddy Soma wrote:
> From: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
> 
> Add missing prototypes to fix the below sparse warnings
> 1. warning: no previous prototype for 'soc_name_decode'
> [-Wmissing-prototypes]
> 2. warning: no previous prototype for 'soc_detection'
> [-Wmissing-prototypes]
> 3. warning: no previous prototype for 'board_name_decode'
> [-Wmissing-prototypes]
> 4. warning: no previous prototype for 'board_detection'
> [-Wmissing-prototypes]
> 
> Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
> Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@amd.com>
> ---
> 
>   board/xilinx/common/board.h | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/board/xilinx/common/board.h b/board/xilinx/common/board.h
> index 69e642429b..922c9d557a 100644
> --- a/board/xilinx/common/board.h
> +++ b/board/xilinx/common/board.h
> @@ -11,4 +11,11 @@ int board_late_init_xilinx(void);
>   
>   int xilinx_read_eeprom(void);
>   
> +char *board_name_decode(void);
> +
> +bool board_detection(void);
> +
> +char *soc_name_decode(void);
> +
> +bool soc_detection(void);
>   #endif /* BOARD_XILINX_COMMON_BOARD_H */

Applied.
M
diff mbox series

Patch

diff --git a/board/xilinx/common/board.h b/board/xilinx/common/board.h
index 69e642429b..922c9d557a 100644
--- a/board/xilinx/common/board.h
+++ b/board/xilinx/common/board.h
@@ -11,4 +11,11 @@  int board_late_init_xilinx(void);
 
 int xilinx_read_eeprom(void);
 
+char *board_name_decode(void);
+
+bool board_detection(void);
+
+char *soc_name_decode(void);
+
+bool soc_detection(void);
 #endif /* BOARD_XILINX_COMMON_BOARD_H */