Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
75b1fa78
Commit
75b1fa78
authored
Jul 12, 2004
by
wdenk
Browse files
Patch by Michael Bendzick, 12 Jul 2004:
fix output formatting in drivers/cfi_flash.c
parent
07cba351
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
75b1fa78
...
...
@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.1:
======================================================================
* Patch by Michael Bendzick, 12 Jul 2004:
fix output formatting in drivers/cfi_flash.c
* Patch by Mark Jonas, 02 Jul 2004:
Fix lowboot (again) on MPC5xxx
...
...
drivers/cfi_flash.c
View file @
75b1fa78
...
...
@@ -462,7 +462,7 @@ void flash_print_info (flash_info_t * info)
if
((
i
%
5
)
==
0
)
printf
(
"
\n
"
);
printf
(
" %08lX%s"
,
info
->
start
[
i
],
info
->
protect
[
i
]
?
" (RO)"
:
"
"
);
info
->
start
[
i
],
info
->
protect
[
i
]
?
" (RO)"
:
"
"
);
#endif
}
putc
(
'\n'
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment