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
8d4f4a83
Commit
8d4f4a83
authored
17 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
esd/common/fpga.c: fix 'assignment of read-only location' error
Signed-off-by:
Wolfgang Denk
<
wd@denx.de
>
parent
c6fe4dab
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
board/esd/common/fpga.c
+4
-3
4 additions, 3 deletions
board/esd/common/fpga.c
with
4 additions
and
3 deletions
board/esd/common/fpga.c
+
4
−
3
View file @
8d4f4a83
...
...
@@ -96,10 +96,10 @@ static int fpga_boot(const unsigned char *fpgadata, int size)
{
int
i
,
index
,
len
;
int
count
;
unsigned
char
b
;
#ifdef CFG_FPGA_SPARTAN2
int
j
;
#else
unsigned
char
b
;
int
bit
;
#endif
...
...
@@ -196,9 +196,10 @@ static int fpga_boot(const unsigned char *fpgadata, int size)
*/
for
(
i
=
index
;
i
<
size
;
i
++
)
{
b
=
fpgadata
[
i
];
for
(
j
=
0
;
j
<
8
;
j
++
)
{
if
((
fpgadata
[
i
]
&
0x80
)
==
0x80
)
if
((
b
&
0x80
)
==
0x80
)
{
FPGA_WRITE_1
;
}
...
...
@@ -206,7 +207,7 @@ static int fpga_boot(const unsigned char *fpgadata, int size)
{
FPGA_WRITE_0
;
}
fpgadata
[
i
]
<<=
1
;
b
<<=
1
;
}
}
#else
...
...
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