diff options
Diffstat (limited to 'sound/pci/sis7019.c')
-rw-r--r-- | sound/pci/sis7019.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/sis7019.c b/sound/pci/sis7019.c index dcd7cd010461..742f1180c39e 100644 --- a/sound/pci/sis7019.c +++ b/sound/pci/sis7019.c | |||
@@ -920,7 +920,7 @@ static unsigned short sis_ac97_rw(struct sis7019 *sis, int codec, u32 cmd) | |||
920 | u16 status; | 920 | u16 status; |
921 | u16 rdy; | 921 | u16 rdy; |
922 | int count; | 922 | int count; |
923 | const static u16 codec_ready[3] = { | 923 | static const u16 codec_ready[3] = { |
924 | SIS_AC97_STATUS_CODEC_READY, | 924 | SIS_AC97_STATUS_CODEC_READY, |
925 | SIS_AC97_STATUS_CODEC2_READY, | 925 | SIS_AC97_STATUS_CODEC2_READY, |
926 | SIS_AC97_STATUS_CODEC3_READY, | 926 | SIS_AC97_STATUS_CODEC3_READY, |
@@ -984,7 +984,7 @@ timeout: | |||
984 | static void sis_ac97_write(struct snd_ac97 *ac97, unsigned short reg, | 984 | static void sis_ac97_write(struct snd_ac97 *ac97, unsigned short reg, |
985 | unsigned short val) | 985 | unsigned short val) |
986 | { | 986 | { |
987 | const static u32 cmd[3] = { | 987 | static const u32 cmd[3] = { |
988 | SIS_AC97_CMD_CODEC_WRITE, | 988 | SIS_AC97_CMD_CODEC_WRITE, |
989 | SIS_AC97_CMD_CODEC2_WRITE, | 989 | SIS_AC97_CMD_CODEC2_WRITE, |
990 | SIS_AC97_CMD_CODEC3_WRITE, | 990 | SIS_AC97_CMD_CODEC3_WRITE, |
@@ -995,7 +995,7 @@ static void sis_ac97_write(struct snd_ac97 *ac97, unsigned short reg, | |||
995 | 995 | ||
996 | static unsigned short sis_ac97_read(struct snd_ac97 *ac97, unsigned short reg) | 996 | static unsigned short sis_ac97_read(struct snd_ac97 *ac97, unsigned short reg) |
997 | { | 997 | { |
998 | const static u32 cmd[3] = { | 998 | static const u32 cmd[3] = { |
999 | SIS_AC97_CMD_CODEC_READ, | 999 | SIS_AC97_CMD_CODEC_READ, |
1000 | SIS_AC97_CMD_CODEC2_READ, | 1000 | SIS_AC97_CMD_CODEC2_READ, |
1001 | SIS_AC97_CMD_CODEC3_READ, | 1001 | SIS_AC97_CMD_CODEC3_READ, |