diff options
Diffstat (limited to 'sound/pci/sonicvibes.c')
-rw-r--r-- | sound/pci/sonicvibes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index 8e3d4ec39c35..784d762f18a7 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c | |||
@@ -248,13 +248,13 @@ static const struct pci_device_id snd_sonic_ids[] = { | |||
248 | 248 | ||
249 | MODULE_DEVICE_TABLE(pci, snd_sonic_ids); | 249 | MODULE_DEVICE_TABLE(pci, snd_sonic_ids); |
250 | 250 | ||
251 | static struct snd_ratden sonicvibes_adc_clock = { | 251 | static const struct snd_ratden sonicvibes_adc_clock = { |
252 | .num_min = 4000 * 65536, | 252 | .num_min = 4000 * 65536, |
253 | .num_max = 48000UL * 65536, | 253 | .num_max = 48000UL * 65536, |
254 | .num_step = 1, | 254 | .num_step = 1, |
255 | .den = 65536, | 255 | .den = 65536, |
256 | }; | 256 | }; |
257 | static struct snd_pcm_hw_constraint_ratdens snd_sonicvibes_hw_constraints_adc_clock = { | 257 | static const struct snd_pcm_hw_constraint_ratdens snd_sonicvibes_hw_constraints_adc_clock = { |
258 | .nrats = 1, | 258 | .nrats = 1, |
259 | .rats = &sonicvibes_adc_clock, | 259 | .rats = &sonicvibes_adc_clock, |
260 | }; | 260 | }; |