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
311d8027
Commit
311d8027
authored
18 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Check argument count in "mii" command.
Problem pointed out by Andrew Dyer, 13 Jun 2005
parent
5078cce8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
common/cmd_mii.c
+5
-0
5 additions, 0 deletions
common/cmd_mii.c
with
8 additions
and
0 deletions
CHANGELOG
+
3
−
0
View file @
311d8027
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
Changes since U-Boot 1.1.4:
======================================================================
======================================================================
* Check argument count in "mii" command.
Problem pointed out by Andrew Dyer, 13 Jun 2005
* Cleanup TQM5200 board configurations:
* Cleanup TQM5200 board configurations:
- make highboot configurations use environment at high end, too,
- make highboot configurations use environment at high end, too,
to avoid flash fragmentation
to avoid flash fragmentation
...
...
This diff is collapsed.
Click to expand it.
common/cmd_mii.c
+
5
−
0
View file @
311d8027
...
@@ -57,6 +57,11 @@ int do_mii (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
...
@@ -57,6 +57,11 @@ int do_mii (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
int
rcode
=
0
;
int
rcode
=
0
;
char
*
devname
;
char
*
devname
;
if
(
argc
<
2
)
{
printf
(
"Usage:
\n
%s
\n
"
,
cmdtp
->
usage
);
return
1
;
}
#if defined(CONFIG_8xx) || defined(CONFIG_MCF52x2)
#if defined(CONFIG_8xx) || defined(CONFIG_MCF52x2)
mii_init
();
mii_init
();
#endif
#endif
...
...
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