mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
51819f6493
commit
2c5582e58c
|
@ -49,6 +49,7 @@ void smsendian_handle_tx_message(void *buffer)
|
||||||
}
|
}
|
||||||
#endif /* __BIG_ENDIAN */
|
#endif /* __BIG_ENDIAN */
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(smsendian_handle_tx_message);
|
||||||
|
|
||||||
void smsendian_handle_rx_message(void *buffer)
|
void smsendian_handle_rx_message(void *buffer)
|
||||||
{
|
{
|
||||||
|
@ -86,6 +87,7 @@ void smsendian_handle_rx_message(void *buffer)
|
||||||
}
|
}
|
||||||
#endif /* __BIG_ENDIAN */
|
#endif /* __BIG_ENDIAN */
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(smsendian_handle_rx_message);
|
||||||
|
|
||||||
void smsendian_handle_message_header(void *msg)
|
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);
|
phdr->msgFlags = le16_to_cpu(phdr->msgFlags);
|
||||||
#endif /* __BIG_ENDIAN */
|
#endif /* __BIG_ENDIAN */
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(smsendian_handle_message_header);
|
||||||
|
|
Loading…
Reference in New Issue