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
47340a46
Commit
47340a46
authored
19 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Fixed compilation for ARM when using a (standard) hard-FP toolchain
Patch by Anders Larsen, 07 Oct 2005
parent
96782c63
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
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
drivers/cfi_flash.c
+2
-2
2 additions, 2 deletions
drivers/cfi_flash.c
with
5 additions
and
2 deletions
CHANGELOG
+
3
−
0
View file @
47340a46
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
Changes for U-Boot 1.1.4:
Changes for U-Boot 1.1.4:
======================================================================
======================================================================
* Fixed compilation for ARM when using a (standard) hard-FP toolchain
Patch by Anders Larsen, 07 Oct 2005
* Cleanup warnings for cpu/arm720t & cpu/arm1136 files.
* Cleanup warnings for cpu/arm720t & cpu/arm1136 files.
sed the linker scripts, rather than pre-process them.
sed the linker scripts, rather than pre-process them.
Patch by Peter Pearse, 07 Oct 2005
Patch by Peter Pearse, 07 Oct 2005
...
...
This diff is collapsed.
Click to expand it.
drivers/cfi_flash.c
+
2
−
2
View file @
47340a46
...
@@ -221,7 +221,7 @@ static void flash_printqry (flash_info_t * info, flash_sect_t sect)
...
@@ -221,7 +221,7 @@ static void flash_printqry (flash_info_t * info, flash_sect_t sect)
cfiptr_t
cptr
;
cfiptr_t
cptr
;
int
x
,
y
;
int
x
,
y
;
for
(
x
=
0
;
x
<
0x40
;
x
+=
16
/
info
->
portwidth
)
{
for
(
x
=
0
;
x
<
0x40
;
x
+=
16
U
/
info
->
portwidth
)
{
cptr
.
cp
=
cptr
.
cp
=
flash_make_addr
(
info
,
sect
,
flash_make_addr
(
info
,
sect
,
x
+
FLASH_OFFSET_CFI_RESP
);
x
+
FLASH_OFFSET_CFI_RESP
);
...
@@ -807,7 +807,7 @@ static void flash_make_cmd (flash_info_t * info, uchar cmd, void *cmdbuf)
...
@@ -807,7 +807,7 @@ static void flash_make_cmd (flash_info_t * info, uchar cmd, void *cmdbuf)
#else
#else
for
(
i
=
1
;
i
<=
info
->
portwidth
;
i
++
)
for
(
i
=
1
;
i
<=
info
->
portwidth
;
i
++
)
#endif
#endif
*
cp
++
=
(
i
%
info
->
chipwidth
)
?
'\0'
:
cmd
;
*
cp
++
=
(
i
&
(
info
->
chipwidth
-
1
)
)
?
'\0'
:
cmd
;
}
}
/*
/*
...
...
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