Commit 11f58c88 authored by Johnny Kim's avatar Johnny Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: change void pointer type to real type



This patch changes the void pointer member of the tstrHostIFmsg to the
real data type because the void pointer type is ambiguous and not
readable.

Signed-off-by: default avatarJohnny Kim <johnny.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 218dc407
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -466,7 +466,7 @@ typedef union _tuniHostIFmsgBody {
typedef struct _tstrHostIFmsg {
	u16 u16MsgId;                                           /*!< Message ID */
	tuniHostIFmsgBody uniHostIFmsgBody;             /*!< Message body */
	void *drvHandler;
	tstrWILC_WFIDrv *drvHandler;
} tstrHostIFmsg;

#ifdef CONNECT_DIRECT