Commit 19cd2297 authored by Cristina Opriceana's avatar Cristina Opriceana Committed by Greg Kroah-Hartman

Staging: drivers: Bool initializations should use true/false

This patch replaces bool initializations of 1/0 with true/false in order
to increase readability and respect the standards. Warning found by
coccinelle.
Signed-off-by: default avatarCristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a568dc1f
...@@ -544,7 +544,7 @@ static long ft1000_ioctl(struct file *file, unsigned int command, ...@@ -544,7 +544,7 @@ static long ft1000_ioctl(struct file *file, unsigned int command,
if (ft1000dev->fProvComplete == 0) if (ft1000dev->fProvComplete == 0)
return -EACCES; return -EACCES;
ft1000dev->fAppMsgPend = 1; ft1000dev->fAppMsgPend = true;
if (info->CardReady) { if (info->CardReady) {
...@@ -719,7 +719,7 @@ static long ft1000_ioctl(struct file *file, unsigned int command, ...@@ -719,7 +719,7 @@ static long ft1000_ioctl(struct file *file, unsigned int command,
result = -ENOTTY; result = -ENOTTY;
break; break;
} }
ft1000dev->fAppMsgPend = 0; ft1000dev->fAppMsgPend = false;
return result; return result;
} }
......
...@@ -312,7 +312,7 @@ static int ll_fault0(struct vm_area_struct *vma, struct vm_fault *vmf) ...@@ -312,7 +312,7 @@ static int ll_fault0(struct vm_area_struct *vma, struct vm_fault *vmf)
vio->u.fault.ft_vmpage = NULL; vio->u.fault.ft_vmpage = NULL;
vio->u.fault.fault.ft_vmf = vmf; vio->u.fault.fault.ft_vmf = vmf;
vio->u.fault.fault.ft_flags = 0; vio->u.fault.fault.ft_flags = 0;
vio->u.fault.fault.ft_flags_valid = 0; vio->u.fault.fault.ft_flags_valid = false;
result = cl_io_loop(env, io); result = cl_io_loop(env, io);
......
...@@ -6,7 +6,7 @@ void Dot11d_Init(struct ieee80211_device *ieee) ...@@ -6,7 +6,7 @@ void Dot11d_Init(struct ieee80211_device *ieee)
{ {
PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(ieee); PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(ieee);
pDot11dInfo->bEnabled = 0; pDot11dInfo->bEnabled = false;
pDot11dInfo->State = DOT11D_STATE_NONE; pDot11dInfo->State = DOT11D_STATE_NONE;
pDot11dInfo->CountryIeLen = 0; pDot11dInfo->CountryIeLen = 0;
......
...@@ -943,7 +943,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb, ...@@ -943,7 +943,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
if(net_ratelimit()) if(net_ratelimit())
printk("find HTCControl\n"); printk("find HTCControl\n");
hdrlen += 4; hdrlen += 4;
rx_stats->bContainHTC = 1; rx_stats->bContainHTC = true;
} }
//IEEE80211_DEBUG_DATA(IEEE80211_DL_DATA, skb->data, skb->len); //IEEE80211_DEBUG_DATA(IEEE80211_DL_DATA, skb->data, skb->len);
......
...@@ -1371,7 +1371,7 @@ static void ieee80211_associate_complete_wq(struct work_struct *work) ...@@ -1371,7 +1371,7 @@ static void ieee80211_associate_complete_wq(struct work_struct *work)
else if(ieee->is_silent_reset == 1) else if(ieee->is_silent_reset == 1)
{ {
printk("==================>silent reset associate\n"); printk("==================>silent reset associate\n");
ieee->is_silent_reset = 0; ieee->is_silent_reset = false;
} }
if (ieee->data_hard_resume) if (ieee->data_hard_resume)
...@@ -2719,7 +2719,7 @@ void ieee80211_softmac_init(struct ieee80211_device *ieee) ...@@ -2719,7 +2719,7 @@ void ieee80211_softmac_init(struct ieee80211_device *ieee)
ieee->sta_edca_param[2] = 0x005E4342; ieee->sta_edca_param[2] = 0x005E4342;
ieee->sta_edca_param[3] = 0x002F3262; ieee->sta_edca_param[3] = 0x002F3262;
ieee->aggregation = true; ieee->aggregation = true;
ieee->enable_rx_imm_BA = 1; ieee->enable_rx_imm_BA = true;
ieee->tx_pending.txb = NULL; ieee->tx_pending.txb = NULL;
setup_timer(&ieee->associate_timer, ieee80211_associate_abort_cb, setup_timer(&ieee->associate_timer, ieee80211_associate_abort_cb,
......
...@@ -2143,7 +2143,7 @@ static void rtl8192_init_priv_variable(struct net_device *dev) ...@@ -2143,7 +2143,7 @@ static void rtl8192_init_priv_variable(struct net_device *dev)
//for silent reset //for silent reset
priv->IrpPendingCount = 1; priv->IrpPendingCount = 1;
priv->ResetProgress = RESET_TYPE_NORESET; priv->ResetProgress = RESET_TYPE_NORESET;
priv->bForcedSilentReset = 0; priv->bForcedSilentReset = false;
priv->bDisableNormalResetCheck = false; priv->bDisableNormalResetCheck = false;
priv->force_reset = false; priv->force_reset = false;
......
...@@ -2419,9 +2419,9 @@ void dm_rf_pathcheck_workitemcallback(struct work_struct *work) ...@@ -2419,9 +2419,9 @@ void dm_rf_pathcheck_workitemcallback(struct work_struct *work)
/* Check Bit 0-3, it means if RF A-D is enabled. */ /* Check Bit 0-3, it means if RF A-D is enabled. */
for (i = 0; i < RF90_PATH_MAX; i++) { for (i = 0; i < RF90_PATH_MAX; i++) {
if (rfpath & (0x01<<i)) if (rfpath & (0x01<<i))
priv->brfpath_rxenable[i] = 1; priv->brfpath_rxenable[i] = true;
else else
priv->brfpath_rxenable[i] = 0; priv->brfpath_rxenable[i] = false;
} }
if (!DM_RxPathSelTable.Enable) if (!DM_RxPathSelTable.Enable)
return; return;
......
...@@ -248,11 +248,11 @@ s_uGetDataDuration( ...@@ -248,11 +248,11 @@ s_uGetDataDuration(
unsigned char byFBOption unsigned char byFBOption
) )
{ {
bool bLastFrag = 0; bool bLastFrag = false;
unsigned int uAckTime = 0, uNextPktTime = 0; unsigned int uAckTime = 0, uNextPktTime = 0;
if (uFragIdx == (uMACfragNum-1)) if (uFragIdx == (uMACfragNum-1))
bLastFrag = 1; bLastFrag = true;
switch (byDurType) { switch (byDurType) {
case DATADUR_B: //DATADUR_B case DATADUR_B: //DATADUR_B
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment