Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
6d1b6f9f
Commit
6d1b6f9f
authored
17 years ago
by
Mike Frysinger
Committed by
Wolfgang Denk
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Mark board_init_[fr] as noreturn
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
161b2af4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/common.h
+2
-2
2 additions, 2 deletions
include/common.h
with
2 additions
and
2 deletions
include/common.h
+
2
−
2
View file @
6d1b6f9f
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment