From: Takashi Iwai Date: Wed, 17 Oct 2007 08:35:58 +0000 (+0200) Subject: [ALSA] bt87x - Fix section mismatch X-Git-Tag: v2.6.24-rc1~35^2~9 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=e5ab3a7c00e682e0e24677203856769df1b9b0cb;p=linux.git [ALSA] bt87x - Fix section mismatch const and __devinit aren't a good pair, resulting in a section mismatch error. Let's remove const as a temporary solution. Signed-off-by: Takashi Iwai Signed-off-by: Jaroslav Kysela --- diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c index 91f9e6a112ff..f960b8209d1b 100644 --- a/sound/pci/bt87x.c +++ b/sound/pci/bt87x.c @@ -165,7 +165,7 @@ struct snd_bt87x_board { unsigned no_digital:1; /* No digital input */ }; -static const __devinitdata struct snd_bt87x_board snd_bt87x_boards[] = { +static __devinitdata struct snd_bt87x_board snd_bt87x_boards[] = { [SND_BT87X_BOARD_UNKNOWN] = { .dig_rate = 32000, /* just a guess */ },