Commit ff7ff365 authored by Dong Chuanjian's avatar Dong Chuanjian Committed by Hans Verkuil

drivers/media/common/siano/smsendian.c : eliminate unnecessary type conversions

remove unnecessary void* type casting.
Signed-off-by: default avatarDong Chuanjian <chuanjian@nfschina.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 2f7d0c94
......@@ -17,7 +17,7 @@
void smsendian_handle_tx_message(void *buffer)
{
#ifdef __BIG_ENDIAN
struct sms_msg_data *msg = (struct sms_msg_data *)buffer;
struct sms_msg_data *msg = buffer;
int i;
int msg_words;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment