Skip to content

Commit

Permalink
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-aribaud-u-boot committed Oct 10, 2014
2 parents d0b3723 + db67801 commit 790af81
Show file tree
Hide file tree
Showing 202 changed files with 2,816 additions and 12,267 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
VERSION = 2014
PATCHLEVEL = 10
SUBLEVEL =
EXTRAVERSION = -rc2
EXTRAVERSION = -rc3
NAME =

# *DOCUMENTATION*
Expand Down
8 changes: 7 additions & 1 deletion arch/arm/cpu/armv7/omap-common/sata.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,13 @@ int init_sata(int dev)
writel(val, TI_SATA_WRAPPER_BASE + TI_SATA_SYSCONFIG);

ret = ahci_init(DWC_AHSATA_BASE);
scsi_scan(1);

return ret;
}

/* On OMAP platforms SATA provides the SCSI subsystem */
void scsi_init(void)
{
init_sata(0);
scsi_scan(1);
}
3 changes: 2 additions & 1 deletion arch/arm/cpu/armv7/socfpga/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
#

obj-y := lowlevel_init.o
obj-y += misc.o timer.o reset_manager.o system_manager.o clock_manager.o
obj-y += misc.o timer.o reset_manager.o system_manager.o clock_manager.o \
fpga_manager.o
obj-$(CONFIG_SPL_BUILD) += spl.o freeze_controller.o scan_manager.o
Loading

0 comments on commit 790af81

Please sign in to comment.