projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7f7eb7
)
udoo: Remove cpu type check prior to setup_sata()
author
Fabio Estevam
<fabio.estevam@nxp.com>
Sun, 15 Oct 2017 13:21:07 +0000
(11:21 -0200)
committer
Stefano Babic
<sbabic@denx.de>
Tue, 31 Oct 2017 10:13:56 +0000
(11:13 +0100)
Inside setup_sata() there is a cpu type check, so there is no need to
do this check in the board file.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
board/udoo/udoo.c
patch
|
blob
|
history
diff --git
a/board/udoo/udoo.c
b/board/udoo/udoo.c
index
a359626
..
562f0d8
100644
(file)
--- a/
board/udoo/udoo.c
+++ b/
board/udoo/udoo.c
@@
-245,8
+245,7
@@
int board_init(void)
gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
#ifdef CONFIG_SATA
- if (is_cpu_type(MXC_CPU_MX6Q))
- setup_sata();
+ setup_sata();
#endif
return 0;
}