summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-01-27 20:04:24 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2011-01-31 13:53:12 -0800
commit879cf160ed0494ea1ffa8959c388d3aa391f3be2 (patch)
tree02cf57a729fbeba176182914d5d717f1d2d0a7ad /drivers
parentf192c2bdede465481cad49095ec71d4dfad904b1 (diff)
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 <joe@perches.com> Acked-by: Vipin Mehta <vipin.mehta@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/ath6kl/wmi/wmi.c2
1 files changed, 1 insertions, 1 deletions
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;