diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-05-14 08:35:26 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:14:28 -0400 |
commit | 2c5582e58ce2982fd64da21907dfad4061fc1f71 (patch) | |
tree | 76f9a730b9e8e04ddfc08e8c892aa68e931ba27e /drivers/media/dvb/siano/smsendian.c | |
parent | 51819f6493f434598e89e8a66d6aa2c31bde494d (diff) |
V4L/DVB (11780): Siano: fix compilation error due to the lack of EXTERNAL_SYMBOL
Cc: Uri Shkolnik <urishk@yahoo.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/siano/smsendian.c')
-rw-r--r-- | drivers/media/dvb/siano/smsendian.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/dvb/siano/smsendian.c b/drivers/media/dvb/siano/smsendian.c index d79aa051269a..457b6d02ef85 100644 --- a/drivers/media/dvb/siano/smsendian.c +++ b/drivers/media/dvb/siano/smsendian.c | |||
@@ -49,6 +49,7 @@ void smsendian_handle_tx_message(void *buffer) | |||
49 | } | 49 | } |
50 | #endif /* __BIG_ENDIAN */ | 50 | #endif /* __BIG_ENDIAN */ |
51 | } | 51 | } |
52 | EXPORT_SYMBOL_GPL(smsendian_handle_tx_message); | ||
52 | 53 | ||
53 | void smsendian_handle_rx_message(void *buffer) | 54 | void smsendian_handle_rx_message(void *buffer) |
54 | { | 55 | { |
@@ -86,6 +87,7 @@ void smsendian_handle_rx_message(void *buffer) | |||
86 | } | 87 | } |
87 | #endif /* __BIG_ENDIAN */ | 88 | #endif /* __BIG_ENDIAN */ |
88 | } | 89 | } |
90 | EXPORT_SYMBOL_GPL(smsendian_handle_rx_message); | ||
89 | 91 | ||
90 | void smsendian_handle_message_header(void *msg) | 92 | void smsendian_handle_message_header(void *msg) |
91 | { | 93 | { |
@@ -97,4 +99,4 @@ void smsendian_handle_message_header(void *msg) | |||
97 | phdr->msgFlags = le16_to_cpu(phdr->msgFlags); | 99 | phdr->msgFlags = le16_to_cpu(phdr->msgFlags); |
98 | #endif /* __BIG_ENDIAN */ | 100 | #endif /* __BIG_ENDIAN */ |
99 | } | 101 | } |
100 | 102 | EXPORT_SYMBOL_GPL(smsendian_handle_message_header); | |