diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-08-11 11:55:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-09-13 16:42:12 -0400 |
commit | 559c2009003bb8092e4927a4bac99cbf75834979 (patch) | |
tree | 10f15746d3f70662841d9da8c7b1545d76160f26 /sound | |
parent | d1f280d615a0f0b723dac5a2cd3f2f7f18bca4fa (diff) |
[media] radio-shark: Add support for suspend & resume
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/i2c/other/tea575x-tuner.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index 88bbd88c066e..cd79ed590f9a 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c | |||
@@ -191,7 +191,7 @@ static u32 snd_tea575x_get_freq(struct snd_tea575x *tea) | |||
191 | return snd_tea575x_val_to_freq(tea, snd_tea575x_read(tea)); | 191 | return snd_tea575x_val_to_freq(tea, snd_tea575x_read(tea)); |
192 | } | 192 | } |
193 | 193 | ||
194 | static void snd_tea575x_set_freq(struct snd_tea575x *tea) | 194 | void snd_tea575x_set_freq(struct snd_tea575x *tea) |
195 | { | 195 | { |
196 | u32 freq = tea->freq / 16; /* to kHz */ | 196 | u32 freq = tea->freq / 16; /* to kHz */ |
197 | u32 band = 0; | 197 | u32 band = 0; |
@@ -571,3 +571,4 @@ module_exit(alsa_tea575x_module_exit) | |||
571 | 571 | ||
572 | EXPORT_SYMBOL(snd_tea575x_init); | 572 | EXPORT_SYMBOL(snd_tea575x_init); |
573 | EXPORT_SYMBOL(snd_tea575x_exit); | 573 | EXPORT_SYMBOL(snd_tea575x_exit); |
574 | EXPORT_SYMBOL(snd_tea575x_set_freq); | ||