Skip to content
Snippets Groups Projects
Commit cd54081c authored by Dave Liu's avatar Dave Liu Committed by Wolfgang Denk
Browse files

ata: enable the sata initialize on boot up


Signed-off-by: default avatarDave Liu <daveliu@freescale.com>
parent 69386383
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,9 @@
#if defined(CONFIG_CMD_IDE)
#include <ide.h>
#endif
#if defined(CONFIG_CMD_SATA)
#include <sata.h>
#endif
#if defined(CONFIG_CMD_SCSI)
#include <scsi.h>
#endif
......@@ -1104,6 +1107,11 @@ void board_init_r (gd_t *id, ulong dest_addr)
#endif
#endif
#if defined(CONFIG_CMD_SATA)
puts ("SATA: ");
sata_initialize ();
#endif
#ifdef CONFIG_LAST_STAGE_INIT
WATCHDOG_RESET ();
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment