From: Joe Perches Date: Fri, 28 Jan 2011 04:04:24 +0000 (-0800) Subject: staging: ath6kl: Convert type of streamExists to A_UINT8 X-Git-Tag: firefly_0821_release~7613^2~2197^2~767 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=879cf160ed0494ea1ffa8959c388d3aa391f3be2;p=firefly-linux-kernel-4.4.55.git staging: ath6kl: Convert type of streamExists to A_UINT8 Make the declaration type match the assigned from type. It's not a bool, it's a u8. Signed-off-by: Joe Perches Acked-by: Vipin Mehta Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ath6kl/wmi/wmi.c b/drivers/staging/ath6kl/wmi/wmi.c index 73cf866d007a..b6c9905ed515 100644 --- a/drivers/staging/ath6kl/wmi/wmi.c +++ b/drivers/staging/ath6kl/wmi/wmi.c @@ -537,7 +537,7 @@ A_UINT8 wmi_implicit_create_pstream(struct wmi_t *wmip, void *osbuf, A_UINT32 la A_UINT8 trafficClass = WMM_AC_BE; A_UINT16 ipType = IP_ETHERTYPE; WMI_DATA_HDR *dtHdr; - A_BOOL streamExists = FALSE; + A_UINT8 streamExists = 0; A_UINT8 userPriority; A_UINT32 hdrsize, metasize; ATH_LLC_SNAP_HDR *llcHdr;