Return-path: Received: from eusmtp01.atmel.com ([212.144.249.243]:34769 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752804AbbHJF6u (ORCPT ); Mon, 10 Aug 2015 01:58:50 -0400 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 2/5] staging: wilc1000: change void pointer type to real type Date: Mon, 10 Aug 2015 14:58:21 +0900 Message-ID: <1439186304-3480-3-git-send-email-tony.cho@atmel.com> (sfid-20150810_075852_930987_5E8BCE98) In-Reply-To: <1439186304-3480-1-git-send-email-tony.cho@atmel.com> References: <1439186304-3480-1-git-send-email-tony.cho@atmel.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: From: Johnny Kim 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 Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 20a554f..b5afc82 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 -- 1.9.1