aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-05-14 09:35:26 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 19:14:28 -0300
commit2c5582e58ce2982fd64da21907dfad4061fc1f71 (patch)
tree76f9a730b9e8e04ddfc08e8c892aa68e931ba27e /drivers/media
parentV4L/DVB (11779): Siano: Makefile - add smsendian to build (diff)
downloadlinux-dev-2c5582e58ce2982fd64da21907dfad4061fc1f71.tar.xz
linux-dev-2c5582e58ce2982fd64da21907dfad4061fc1f71.zip
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')
-rw-r--r--drivers/media/dvb/siano/smsendian.c4
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)
}
#endif /* __BIG_ENDIAN */
}
+EXPORT_SYMBOL_GPL(smsendian_handle_tx_message);
void smsendian_handle_rx_message(void *buffer)
{
@@ -86,6 +87,7 @@ void smsendian_handle_rx_message(void *buffer)
}
#endif /* __BIG_ENDIAN */
}
+EXPORT_SYMBOL_GPL(smsendian_handle_rx_message);
void smsendian_handle_message_header(void *msg)
{
@@ -97,4 +99,4 @@ void smsendian_handle_message_header(void *msg)
phdr->msgFlags = le16_to_cpu(phdr->msgFlags);
#endif /* __BIG_ENDIAN */
}
-
+EXPORT_SYMBOL_GPL(smsendian_handle_message_header);