mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
Mark board_init_[fr] as noreturn
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
161b2af4d7
commit
6d1b6f9f89
1 changed files with 2 additions and 2 deletions
|
@ -203,8 +203,8 @@ void init_cmd_timeout(void);
|
|||
void reset_cmd_timeout(void);
|
||||
|
||||
/* lib_$(ARCH)/board.c */
|
||||
void board_init_f (ulong);
|
||||
void board_init_r (gd_t *, ulong);
|
||||
void board_init_f (ulong) __attribute__ ((noreturn));
|
||||
void board_init_r (gd_t *, ulong) __attribute__ ((noreturn));
|
||||
int checkboard (void);
|
||||
int checkflash (void);
|
||||
int checkdram (void);
|
||||
|
|
Loading…
Reference in a new issue