aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorUri Shkolnik <uris@siano-ms.com>2009-05-19 11:56:16 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 18:14:43 -0400
commitd95e9883ce28c23cb852d599bf0a0889527c1d09 (patch)
tree95f827acae4da74392a4edf64cdca79545239bae /drivers
parent34601caa64e11b8fa5e9a03d74cc1df0af32e2ca (diff)
V4L/DVB (11892): Siano: smsendian - declare function as extern
Declare the object function as 'extern' Signed-off-by: Uri Shkolnik <uris@siano-ms.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/dvb/siano/smsendian.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/siano/smsendian.h b/drivers/media/dvb/siano/smsendian.h
index 7fbedc6a6527..1624d6fd367b 100644
--- a/drivers/media/dvb/siano/smsendian.h
+++ b/drivers/media/dvb/siano/smsendian.h
@@ -24,9 +24,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
24 24
25#include <asm/byteorder.h> 25#include <asm/byteorder.h>
26 26
27void smsendian_handle_tx_message(void *buffer); 27extern void smsendian_handle_tx_message(void *buffer);
28void smsendian_handle_rx_message(void *buffer); 28extern void smsendian_handle_rx_message(void *buffer);
29void smsendian_handle_message_header(void *msg); 29extern void smsendian_handle_message_header(void *msg);
30 30
31#endif /* __SMS_ENDIAN_H__ */ 31#endif /* __SMS_ENDIAN_H__ */
32 32