mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
6fe46936a3
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> Link: https://lore.kernel.org/r/20230523055626.14742-1-ashok.reddy.soma@amd.com Signed-off-by: Michal Simek <michal.simek@amd.com>
21 lines
423 B
C
21 lines
423 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* (C) Copyright 2020 Xilinx, Inc.
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*/
|
|
|
|
#ifndef _BOARD_XILINX_COMMON_BOARD_H
|
|
#define _BOARD_XILINX_COMMON_BOARD_H
|
|
|
|
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 */
|