summary refs log tree commit diff
path: root/sound/pci/bt87x.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2007-10-17 10:35:58 +0200
committerJaroslav Kysela <perex@perex.cz>2007-10-23 08:04:32 +0200
commite5ab3a7c00e682e0e24677203856769df1b9b0cb (patch)
treeedcd30a21210d0b4e69be3ebc87c3c4616bab4ea /sound/pci/bt87x.c
parent53eb1b85402f108d5151338cff4430f30fd9727f (diff)
downloadlinux-e5ab3a7c00e682e0e24677203856769df1b9b0cb.tar.gz
[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/pci/bt87x.c')
-rw-r--r--sound/pci/bt87x.c2
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 {
 	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 */
 	},