* [PATCH] [sparse-cleanup] Fix incompatible type comparison in wilc1000/host_interface.c
@ 2015-11-30 23:40 Mario J. Rugiero
0 siblings, 0 replies; only message in thread
From: Mario J. Rugiero @ 2015-11-30 23:40 UTC (permalink / raw)
To: devel
Cc: mrugiero, gregkh, linux-wireless, johnny.kim, austin.shin,
chris.park, tony.cho, glen.lee, leo.kim
Signed-off-by: Mario J. Rugiero <mrugiero@gmail.com>
---
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 d5b7725..9ce1d22 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -2270,7 +2270,7 @@ static void Handle_AddBeacon(struct host_if_drv *hif_drv,
*pu8CurrByte++ = ((pstrSetBeaconParam->tail_len >> 16) & 0xFF);
*pu8CurrByte++ = ((pstrSetBeaconParam->tail_len >> 24) & 0xFF);
- if (pstrSetBeaconParam->tail > 0)
+ if (pstrSetBeaconParam->tail != NULL)
memcpy(pu8CurrByte, pstrSetBeaconParam->tail, pstrSetBeaconParam->tail_len);
pu8CurrByte += pstrSetBeaconParam->tail_len;
--
2.6.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-11-30 23:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-30 23:40 [PATCH] [sparse-cleanup] Fix incompatible type comparison in wilc1000/host_interface.c Mario J. Rugiero
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).