diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-10-17 04:35:58 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-23 02:04:32 -0400 |
commit | e5ab3a7c00e682e0e24677203856769df1b9b0cb (patch) | |
tree | edcd30a21210d0b4e69be3ebc87c3c4616bab4ea /sound | |
parent | 53eb1b85402f108d5151338cff4430f30fd9727f (diff) |
[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 <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/bt87x.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
165 | unsigned no_digital:1; /* No digital input */ | 165 | unsigned no_digital:1; /* No digital input */ |
166 | }; | 166 | }; |
167 | 167 | ||
168 | static const __devinitdata struct snd_bt87x_board snd_bt87x_boards[] = { | 168 | static __devinitdata struct snd_bt87x_board snd_bt87x_boards[] = { |
169 | [SND_BT87X_BOARD_UNKNOWN] = { | 169 | [SND_BT87X_BOARD_UNKNOWN] = { |
170 | .dig_rate = 32000, /* just a guess */ | 170 | .dig_rate = 32000, /* just a guess */ |
171 | }, | 171 | }, |