diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-03-08 07:06:13 -0500 |
---|---|---|
committer | Steven Miao <realmz6@gmail.com> | 2014-04-11 20:47:56 -0400 |
commit | cb8f05f74f7e8dda92095e2f9d400f799a8d1846 (patch) | |
tree | 5341295701dbf43c0b9502e353db2530a1341e94 /arch/blackfin | |
parent | 3def9074f981761d0eb449a68a4c21618a70ab29 (diff) |
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')
-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 = { | |||
986 | }, | 986 | }, |
987 | #endif | 987 | #endif |
988 | 988 | ||
989 | #if defined(CONFIG_SND_SOC_ADAV80X) || defined(CONFIG_SND_SOC_ADV80X_MODULE) | 989 | #if IS_ENABLED(CONFIG_SND_SOC_ADAV80X) |
990 | { | 990 | { |
991 | .modalias = "adav801", | 991 | .modalias = "adav801", |
992 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ | 992 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |