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
1ed63c54
Commit
1ed63c54
authored
13 years ago
by
Michael Schwingen
Committed by
Albert ARIBAUD
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
run arm_pci_init after relocation
Signed-off-by:
Michael Schwingen
<
michael@schwingen.org
>
parent
29161f47
Branches
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
arch/arm/lib/board.c
+3
-3
3 additions, 3 deletions
arch/arm/lib/board.c
with
3 additions
and
3 deletions
arch/arm/lib/board.c
+
3
−
3
View file @
1ed63c54
...
@@ -262,9 +262,6 @@ init_fnc_t *init_sequence[] = {
...
@@ -262,9 +262,6 @@ init_fnc_t *init_sequence[] = {
init_func_i2c
,
init_func_i2c
,
#endif
#endif
dram_init
,
/* configure available RAM banks */
dram_init
,
/* configure available RAM banks */
#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
arm_pci_init
,
#endif
NULL
,
NULL
,
};
};
...
@@ -533,6 +530,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
...
@@ -533,6 +530,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
/* initialize environment */
/* initialize environment */
env_relocate
();
env_relocate
();
#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
arm_pci_init
();
#endif
#ifdef CONFIG_VFD
#ifdef CONFIG_VFD
/* must do this after the framebuffer is allocated */
/* must do this after the framebuffer is allocated */
drv_vfd_init
();
drv_vfd_init
();
...
...
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