Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rk3576 Downstream U-Boot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
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
Nicolas Frattaroli
Rk3576 Downstream U-Boot
Commits
0b7df656
Commit
0b7df656
authored
10 years ago
by
Jeroen Hofstee
Committed by
Tom Rini
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
common: env_common: make env_get_char_spec __weak
Signed-off-by:
Jeroen Hofstee
<
jeroen@myspectrum.nl
>
parent
862c93e9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/env_common.c
+1
-3
1 addition, 3 deletions
common/env_common.c
with
1 addition
and
3 deletions
common/env_common.c
+
1
−
3
View file @
0b7df656
...
...
@@ -27,12 +27,10 @@ struct hsearch_data env_htab = {
.
change_ok
=
env_flags_validate
,
};
static
uchar
__
env_get_char_spec
(
int
index
)
__weak
uchar
env_get_char_spec
(
int
index
)
{
return
*
((
uchar
*
)(
gd
->
env_addr
+
index
));
}
uchar
env_get_char_spec
(
int
)
__attribute__
((
weak
,
alias
(
"__env_get_char_spec"
)));
static
uchar
env_get_char_init
(
int
index
)
{
...
...
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