diff options
| author | Shinya Kuribayashi <skuribay@pobox.com> | 2011-02-05 19:07:00 +0900 | 
|---|---|---|
| committer | Shinya Kuribayashi <skuribay@pobox.com> | 2011-02-05 20:06:03 +0900 | 
| commit | c6dc8a734d0923e0199a9463d6b7f2241521e208 (patch) | |
| tree | 153283ba241ecc72e8e527798993751b992fd40c | |
| parent | 17a990b55008fd79636e4880d9d10b7172ca87ce (diff) | |
| download | olio-uboot-2014.01-c6dc8a734d0923e0199a9463d6b7f2241521e208.tar.xz olio-uboot-2014.01-c6dc8a734d0923e0199a9463d6b7f2241521e208.zip | |
cmd_ide: Fix an unused CONFIG_AU1X00 symbol to work as intended
commit 8bde63eb3f79d68f693201528dafc8ae7aa087de ([MIPS] Rename Alchemy
processor configs into CONFIG_SOC_*) forgot to pick up this one.
Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
| -rw-r--r-- | common/cmd_ide.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/common/cmd_ide.c b/common/cmd_ide.c index df7bdf56e..a1f7e5715 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -811,7 +811,8 @@ set_pcmcia_timing (int pmode)  /* We only need to swap data if we are running on a big endian cpu. */  /* But Au1x00 cpu:s already swaps data in big endian mode! */ -#if defined(__LITTLE_ENDIAN) || ( defined(CONFIG_AU1X00) && !defined(CONFIG_GTH2) ) +#if defined(__LITTLE_ENDIAN) || \ +   (defined(CONFIG_SOC_AU1X00) && !defined(CONFIG_GTH2))  #define input_swap_data(x,y,z) input_data(x,y,z)  #else  static void |