Skip to content

Commit

Permalink
blackfin: bf537: fix typo "CONFIG_SND_SOC_ADV80X_MODULE"
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Paul Bolle authored and Steven Miao committed Apr 12, 2014
1 parent 3def907 commit cb8f05f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf537/boards/stamp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit cb8f05f

Please sign in to comment.