summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/host_interface.c
diff options
context:
space:
mode:
authorJohnny Kim <johnny.kim@atmel.com>2015-08-13 13:41:20 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-14 19:02:01 -0700
commit11f58c88ddf8613dde976e0fe18afecefaf04195 (patch)
tree4289aaa722a350afeb2a7070bcf7ada0123c61f7 /drivers/staging/wilc1000/host_interface.c
parent218dc407d4b275a6f96311ff8c4b70dd998fcf24 (diff)
downloadop-kernel-dev-11f58c88ddf8613dde976e0fe18afecefaf04195.zip
op-kernel-dev-11f58c88ddf8613dde976e0fe18afecefaf04195.tar.gz
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: Johnny Kim <johnny.kim@atmel.com> Signed-off-by: Tony Cho <tony.cho@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/host_interface.c')
-rw-r--r--drivers/staging/wilc1000/host_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 11b1cf7..ecab76e 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -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
OpenPOWER on IntegriCloud