2019-05-19 21:51:43 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2009-04-21 00:00:52 +08:00
|
|
|
/****************************************************************
|
|
|
|
|
|
|
|
Siano Mobile Silicon, Inc.
|
|
|
|
MDTV receiver kernel modules.
|
|
|
|
Copyright (C) 2006-2009, Uri Shkolnik
|
|
|
|
|
|
|
|
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SMS_ENDIAN_H__
|
|
|
|
#define __SMS_ENDIAN_H__
|
|
|
|
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
|
2009-05-19 23:56:16 +08:00
|
|
|
extern void smsendian_handle_tx_message(void *buffer);
|
|
|
|
extern void smsendian_handle_rx_message(void *buffer);
|
|
|
|
extern void smsendian_handle_message_header(void *msg);
|
2009-04-21 00:00:52 +08:00
|
|
|
|
|
|
|
#endif /* __SMS_ENDIAN_H__ */
|
|
|
|
|