diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-03-08 13:06:13 +0100 |
---|---|---|
committer | Steven Miao <realmz6@gmail.com> | 2014-04-12 08:47:56 +0800 |
commit | cb8f05f74f7e8dda92095e2f9d400f799a8d1846 (patch) | |
tree | 5341295701dbf43c0b9502e353db2530a1341e94 /arch/blackfin/mach-bf537 | |
parent | 3def9074f981761d0eb449a68a4c21618a70ab29 (diff) | |
download | blackbird-obmc-linux-cb8f05f74f7e8dda92095e2f9d400f799a8d1846.tar.gz blackbird-obmc-linux-cb8f05f74f7e8dda92095e2f9d400f799a8d1846.zip |
blackfin: bf537: fix typo "CONFIG_SND_SOC_ADV80X_MODULE"
There's a (rather subtle) typo in "CONFIG_SND_SOC_ADV80X_MODULE". Fix it
once and for all by using IS_ENABLED(), which is designed to avoid
issues like this.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Diffstat (limited to 'arch/blackfin/mach-bf537')
-rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index 44fd1d4682ac..50c2b0a52475 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c @@ -986,7 +986,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = { }, #endif -#if defined(CONFIG_SND_SOC_ADAV80X) || defined(CONFIG_SND_SOC_ADV80X_MODULE) +#if IS_ENABLED(CONFIG_SND_SOC_ADAV80X) { .modalias = "adav801", .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |