diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2012-04-09 17:51:08 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-04-19 08:49:53 -0400 |
commit | 52dbb57c2322d494116570cabee8d4c9658604d6 (patch) | |
tree | 9eef3015c4a1686b26ce14526217bc9341a96239 /drivers/media/dvb/frontends/au8522_common.c | |
parent | 0a7b5e2747c55935944cac356cb48f03dc399b5a (diff) |
[media] au8522_common: dont EXPORT_SYMBOL(au8522_led_gpio_enable)
This function is only called from within au8522_common.c - mark it static.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/au8522_common.c')
-rw-r--r-- | drivers/media/dvb/frontends/au8522_common.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/au8522_common.c b/drivers/media/dvb/frontends/au8522_common.c index 625c5046c52b..5cfe151ee394 100644 --- a/drivers/media/dvb/frontends/au8522_common.c +++ b/drivers/media/dvb/frontends/au8522_common.c | |||
@@ -127,7 +127,7 @@ void au8522_release_state(struct au8522_state *state) | |||
127 | } | 127 | } |
128 | EXPORT_SYMBOL(au8522_release_state); | 128 | EXPORT_SYMBOL(au8522_release_state); |
129 | 129 | ||
130 | int au8522_led_gpio_enable(struct au8522_state *state, int onoff) | 130 | static int au8522_led_gpio_enable(struct au8522_state *state, int onoff) |
131 | { | 131 | { |
132 | struct au8522_led_config *led_config = state->config->led_cfg; | 132 | struct au8522_led_config *led_config = state->config->led_cfg; |
133 | u8 val; | 133 | u8 val; |
@@ -151,7 +151,6 @@ int au8522_led_gpio_enable(struct au8522_state *state, int onoff) | |||
151 | return au8522_writereg(state, 0x8000 | | 151 | return au8522_writereg(state, 0x8000 | |
152 | (led_config->gpio_output & ~0xc000), val); | 152 | (led_config->gpio_output & ~0xc000), val); |
153 | } | 153 | } |
154 | EXPORT_SYMBOL(au8522_led_gpio_enable); | ||
155 | 154 | ||
156 | /* led = 0 | off | 155 | /* led = 0 | off |
157 | * led = 1 | signal ok | 156 | * led = 1 | signal ok |