diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-08-11 12:55:22 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-09-13 17:42:12 -0300 |
commit | 559c2009003bb8092e4927a4bac99cbf75834979 (patch) | |
tree | 10f15746d3f70662841d9da8c7b1545d76160f26 /sound/i2c | |
parent | d1f280d615a0f0b723dac5a2cd3f2f7f18bca4fa (diff) | |
download | linux-stable-559c2009003bb8092e4927a4bac99cbf75834979.tar.gz linux-stable-559c2009003bb8092e4927a4bac99cbf75834979.tar.bz2 linux-stable-559c2009003bb8092e4927a4bac99cbf75834979.zip |
[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/i2c')
-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) return snd_tea575x_val_to_freq(tea, snd_tea575x_read(tea)); } -static void snd_tea575x_set_freq(struct snd_tea575x *tea) +void snd_tea575x_set_freq(struct snd_tea575x *tea) { u32 freq = tea->freq / 16; /* to kHz */ u32 band = 0; @@ -571,3 +571,4 @@ module_exit(alsa_tea575x_module_exit) EXPORT_SYMBOL(snd_tea575x_init); EXPORT_SYMBOL(snd_tea575x_exit); +EXPORT_SYMBOL(snd_tea575x_set_freq); |