diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/cmd_ide.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 668d838af..cfb4e1d13 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -136,7 +136,7 @@ static  block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];  /* ------------------------------------------------------------------------- */  #ifdef CONFIG_IDE_LED -#ifndef CONFIG_KUP4K +#if !defined(CONFIG_KUP4K) && !defined(CONFIG_BMS2003)  static void  ide_led   (uchar led, uchar status);  #else  extern void  ide_led   (uchar led, uchar status); @@ -1423,7 +1423,7 @@ static void ide_reset (void)  /* ------------------------------------------------------------------------- */ -#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K) +#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K) && !defined(CONFIG_BMS2003)  static	uchar	led_buffer = 0;		/* Buffer for current LED status	*/ |