diff options
author | Tom Rini <trini@konsulko.com> | 2016-12-20 08:42:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-20 08:42:50 -0500 |
commit | 7588bf939090c1110f2067895f026ebe81b30d72 (patch) | |
tree | 26068670a26bad3f483bcc61fb616bf5fa8f343a /common/board_r.c | |
parent | 36737f22b78a475c6bbc8a0467b51e4d95b52a7d (diff) | |
parent | 950f86ca38325c9ae7874895d2cdbdda5496e712 (diff) |
Merge branch 'master' of git://www.denx.de/git/u-boot-microblaze
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/board_r.c b/common/board_r.c index 5496f45cbd9..a3733526c69 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -620,7 +620,7 @@ static int initr_ambapp_print(void) } #endif -#if defined(CONFIG_SCSI) +#if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI) static int initr_scsi(void) { puts("SCSI: "); @@ -923,7 +923,7 @@ init_fnc_t init_sequence_r[] = { initr_ambapp_print, #endif #endif -#ifdef CONFIG_SCSI +#if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI) INIT_FUNC_WATCHDOG_RESET initr_scsi, #endif |