Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Reform
reform-boundary-uboot
Commits
002ad7b8
Commit
002ad7b8
authored
10 years ago
by
Jeroen Hofstee
Committed by
Tom Rini
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
misc: use __weak
Signed-off-by:
Jeroen Hofstee
<
jeroen@myspectrum.nl
>
parent
00dcb07c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/menu.c
+1
-4
1 addition, 4 deletions
common/menu.c
post/post.c
+2
-7
2 additions, 7 deletions
post/post.c
with
3 additions
and
11 deletions
common/menu.c
+
1
−
4
View file @
002ad7b8
...
@@ -105,12 +105,9 @@ static inline void *menu_item_destroy(struct menu *m,
...
@@ -105,12 +105,9 @@ static inline void *menu_item_destroy(struct menu *m,
return
NULL
;
return
NULL
;
}
}
void
__
menu_display_statusline
(
struct
menu
*
m
)
__weak
void
menu_display_statusline
(
struct
menu
*
m
)
{
{
return
;
}
}
void
menu_display_statusline
(
struct
menu
*
m
)
__attribute__
((
weak
,
alias
(
"__menu_display_statusline"
)));
/*
/*
* Display a menu so the user can make a choice of an item. First display its
* Display a menu so the user can make a choice of an item. First display its
...
...
This diff is collapsed.
Click to expand it.
post/post.c
+
2
−
7
View file @
002ad7b8
...
@@ -52,7 +52,7 @@ int post_init_f(void)
...
@@ -52,7 +52,7 @@ int post_init_f(void)
* Boards with hotkey support can override this weak default function
* Boards with hotkey support can override this weak default function
* by defining one in their board specific code.
* by defining one in their board specific code.
*/
*/
int
__
post_hotkeys_pressed
(
void
)
__weak
int
post_hotkeys_pressed
(
void
)
{
{
#ifdef CONFIG_SYS_POST_HOTKEYS_GPIO
#ifdef CONFIG_SYS_POST_HOTKEYS_GPIO
int
ret
;
int
ret
;
...
@@ -73,9 +73,6 @@ int __post_hotkeys_pressed(void)
...
@@ -73,9 +73,6 @@ int __post_hotkeys_pressed(void)
return
0
;
/* No hotkeys supported */
return
0
;
/* No hotkeys supported */
}
}
int
post_hotkeys_pressed
(
void
)
__attribute__
((
weak
,
alias
(
"__post_hotkeys_pressed"
)));
void
post_bootmode_init
(
void
)
void
post_bootmode_init
(
void
)
{
{
...
@@ -236,11 +233,9 @@ static void post_get_flags(int *test_flags)
...
@@ -236,11 +233,9 @@ static void post_get_flags(int *test_flags)
test_flags
[
j
]
|=
POST_SLOWTEST
;
test_flags
[
j
]
|=
POST_SLOWTEST
;
}
}
void
__
show_post_progress
(
unsigned
int
test_num
,
int
before
,
int
result
)
__weak
void
show_post_progress
(
unsigned
int
test_num
,
int
before
,
int
result
)
{
{
}
}
void
show_post_progress
(
unsigned
int
,
int
,
int
)
__attribute__
((
weak
,
alias
(
"__show_post_progress"
)));
static
int
post_run_single
(
struct
post_test
*
test
,
static
int
post_run_single
(
struct
post_test
*
test
,
int
test_flags
,
int
flags
,
unsigned
int
i
)
int
test_flags
,
int
flags
,
unsigned
int
i
)
...
...
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