Skip to content
Snippets Groups Projects
Commit 6d1b6f9f authored by Mike Frysinger's avatar Mike Frysinger Committed by Wolfgang Denk
Browse files

Mark board_init_[fr] as noreturn

parent 161b2af4
No related branches found
No related tags found
No related merge requests found
...@@ -203,8 +203,8 @@ void init_cmd_timeout(void); ...@@ -203,8 +203,8 @@ void init_cmd_timeout(void);
void reset_cmd_timeout(void); void reset_cmd_timeout(void);
/* lib_$(ARCH)/board.c */ /* lib_$(ARCH)/board.c */
void board_init_f (ulong); void board_init_f (ulong) __attribute__ ((noreturn));
void board_init_r (gd_t *, ulong); void board_init_r (gd_t *, ulong) __attribute__ ((noreturn));
int checkboard (void); int checkboard (void);
int checkflash (void); int checkflash (void);
int checkdram (void); int checkdram (void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment