summaryrefslogtreecommitdiff
path: root/linux/drivers
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-05-14 09:35:26 -0300
commit933b155b80111900885f3b736fb5ec36207cac98 (patch)
treeb6b9697627a45a73a37b005ca2bb1506b94c7f5a /linux/drivers
parentcaf7a673bbefc685df483fd4a285c443174fbd24 (diff)
downloadmediapointer-dvb-s2-933b155b80111900885f3b736fb5ec36207cac98.tar.gz
mediapointer-dvb-s2-933b155b80111900885f3b736fb5ec36207cac98.tar.bz2
Siano: fix compilation error due to the lack of EXTERNAL_SYMBOL
Priority: normal CC: Uri Shkolnik <urishk@yahoo.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers')
-rw-r--r--linux/drivers/media/dvb/siano/smsendian.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/siano/smsendian.c b/linux/drivers/media/dvb/siano/smsendian.c
index d79aa0512..457b6d02e 100644
--- a/linux/drivers/media/dvb/siano/smsendian.c
+++ b/linux/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);