net: fix assignment of 0/1 to bool variables.
DaveM said: Please, this kind of stuff rots forever and not using bool properly drives me crazy. Joe Perches <joe@perches.com> gave me the spatch script: @@ bool b; @@ -b = 0 +b = false @@ bool b; @@ -b = 1 +b = true I merely installed coccinelle, read the documentation and took credit. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
a8e510f682
commit
3db1cd5c05
@@ -722,9 +722,9 @@ void b43legacy_wireless_core_reset(struct b43legacy_wldev *dev, u32 flags)
|
||||
macctl &= ~B43legacy_MACCTL_GMODE;
|
||||
if (flags & B43legacy_TMSLOW_GMODE) {
|
||||
macctl |= B43legacy_MACCTL_GMODE;
|
||||
dev->phy.gmode = 1;
|
||||
dev->phy.gmode = true;
|
||||
} else
|
||||
dev->phy.gmode = 0;
|
||||
dev->phy.gmode = false;
|
||||
macctl |= B43legacy_MACCTL_IHR_ENABLED;
|
||||
b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
|
||||
}
|
||||
@@ -811,7 +811,7 @@ static void b43legacy_calculate_link_quality(struct b43legacy_wldev *dev)
|
||||
if (dev->noisecalc.calculation_running)
|
||||
return;
|
||||
dev->noisecalc.channel_at_start = dev->phy.channel;
|
||||
dev->noisecalc.calculation_running = 1;
|
||||
dev->noisecalc.calculation_running = true;
|
||||
dev->noisecalc.nr_samples = 0;
|
||||
|
||||
b43legacy_generate_noise_sample(dev);
|
||||
@@ -873,7 +873,7 @@ static void handle_irq_noise(struct b43legacy_wldev *dev)
|
||||
|
||||
dev->stats.link_noise = average;
|
||||
drop_calculation:
|
||||
dev->noisecalc.calculation_running = 0;
|
||||
dev->noisecalc.calculation_running = false;
|
||||
return;
|
||||
}
|
||||
generate_new:
|
||||
@@ -889,7 +889,7 @@ static void handle_irq_tbtt_indication(struct b43legacy_wldev *dev)
|
||||
b43legacy_power_saving_ctl_bits(dev, -1, -1);
|
||||
}
|
||||
if (b43legacy_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
|
||||
dev->dfq_valid = 1;
|
||||
dev->dfq_valid = true;
|
||||
}
|
||||
|
||||
static void handle_irq_atim_end(struct b43legacy_wldev *dev)
|
||||
@@ -898,7 +898,7 @@ static void handle_irq_atim_end(struct b43legacy_wldev *dev)
|
||||
b43legacy_write32(dev, B43legacy_MMIO_MACCMD,
|
||||
b43legacy_read32(dev, B43legacy_MMIO_MACCMD)
|
||||
| B43legacy_MACCMD_DFQ_VALID);
|
||||
dev->dfq_valid = 0;
|
||||
dev->dfq_valid = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -971,7 +971,7 @@ static void b43legacy_write_beacon_template(struct b43legacy_wldev *dev,
|
||||
unsigned int i, len, variable_len;
|
||||
const struct ieee80211_mgmt *bcn;
|
||||
const u8 *ie;
|
||||
bool tim_found = 0;
|
||||
bool tim_found = false;
|
||||
unsigned int rate;
|
||||
u16 ctl;
|
||||
int antenna;
|
||||
@@ -1019,7 +1019,7 @@ static void b43legacy_write_beacon_template(struct b43legacy_wldev *dev,
|
||||
/* A valid TIM is at least 4 bytes long. */
|
||||
if (ie_len < 4)
|
||||
break;
|
||||
tim_found = 1;
|
||||
tim_found = true;
|
||||
|
||||
tim_position = sizeof(struct b43legacy_plcp_hdr6);
|
||||
tim_position += offsetof(struct ieee80211_mgmt,
|
||||
@@ -1172,7 +1172,7 @@ static void b43legacy_upload_beacon0(struct b43legacy_wldev *dev)
|
||||
* but we don't use that feature anyway. */
|
||||
b43legacy_write_probe_resp_template(dev, 0x268, 0x4A,
|
||||
&__b43legacy_ratetable[3]);
|
||||
wl->beacon0_uploaded = 1;
|
||||
wl->beacon0_uploaded = true;
|
||||
}
|
||||
|
||||
static void b43legacy_upload_beacon1(struct b43legacy_wldev *dev)
|
||||
@@ -1182,7 +1182,7 @@ static void b43legacy_upload_beacon1(struct b43legacy_wldev *dev)
|
||||
if (wl->beacon1_uploaded)
|
||||
return;
|
||||
b43legacy_write_beacon_template(dev, 0x468, 0x1A);
|
||||
wl->beacon1_uploaded = 1;
|
||||
wl->beacon1_uploaded = true;
|
||||
}
|
||||
|
||||
static void handle_irq_beacon(struct b43legacy_wldev *dev)
|
||||
@@ -1212,7 +1212,7 @@ static void handle_irq_beacon(struct b43legacy_wldev *dev)
|
||||
if (unlikely(wl->beacon_templates_virgin)) {
|
||||
/* We never uploaded a beacon before.
|
||||
* Upload both templates now, but only mark one valid. */
|
||||
wl->beacon_templates_virgin = 0;
|
||||
wl->beacon_templates_virgin = false;
|
||||
b43legacy_upload_beacon0(dev);
|
||||
b43legacy_upload_beacon1(dev);
|
||||
cmd = b43legacy_read32(dev, B43legacy_MMIO_MACCMD);
|
||||
@@ -1275,8 +1275,8 @@ static void b43legacy_update_templates(struct b43legacy_wl *wl)
|
||||
if (wl->current_beacon)
|
||||
dev_kfree_skb_any(wl->current_beacon);
|
||||
wl->current_beacon = beacon;
|
||||
wl->beacon0_uploaded = 0;
|
||||
wl->beacon1_uploaded = 0;
|
||||
wl->beacon0_uploaded = false;
|
||||
wl->beacon1_uploaded = false;
|
||||
ieee80211_queue_work(wl->hw, &wl->beacon_update_trigger);
|
||||
}
|
||||
|
||||
@@ -2510,7 +2510,7 @@ static int find_wldev_for_phymode(struct b43legacy_wl *wl,
|
||||
if (d->phy.possible_phymodes & phymode) {
|
||||
/* Ok, this device supports the PHY-mode.
|
||||
* Set the gmode bit. */
|
||||
*gmode = 1;
|
||||
*gmode = true;
|
||||
*dev = d;
|
||||
|
||||
return 0;
|
||||
@@ -2546,7 +2546,7 @@ static int b43legacy_switch_phymode(struct b43legacy_wl *wl,
|
||||
struct b43legacy_wldev *uninitialized_var(up_dev);
|
||||
struct b43legacy_wldev *down_dev;
|
||||
int err;
|
||||
bool gmode = 0;
|
||||
bool gmode = false;
|
||||
int prev_status;
|
||||
|
||||
err = find_wldev_for_phymode(wl, new_mode, &up_dev, &gmode);
|
||||
@@ -3044,12 +3044,12 @@ static void setup_struct_phy_for_init(struct b43legacy_wldev *dev,
|
||||
|
||||
/* Assume the radio is enabled. If it's not enabled, the state will
|
||||
* immediately get fixed on the first periodic work run. */
|
||||
dev->radio_hw_enable = 1;
|
||||
dev->radio_hw_enable = true;
|
||||
|
||||
phy->savedpctlreg = 0xFFFF;
|
||||
phy->aci_enable = 0;
|
||||
phy->aci_wlan_automatic = 0;
|
||||
phy->aci_hw_rssi = 0;
|
||||
phy->aci_enable = false;
|
||||
phy->aci_wlan_automatic = false;
|
||||
phy->aci_hw_rssi = false;
|
||||
|
||||
lo = phy->_lo_pairs;
|
||||
if (lo)
|
||||
@@ -3081,7 +3081,7 @@ static void setup_struct_phy_for_init(struct b43legacy_wldev *dev,
|
||||
static void setup_struct_wldev_for_init(struct b43legacy_wldev *dev)
|
||||
{
|
||||
/* Flags */
|
||||
dev->dfq_valid = 0;
|
||||
dev->dfq_valid = false;
|
||||
|
||||
/* Stats */
|
||||
memset(&dev->stats, 0, sizeof(dev->stats));
|
||||
@@ -3187,9 +3187,9 @@ static void prepare_phy_data_for_init(struct b43legacy_wldev *dev)
|
||||
phy->lofcal = 0xFFFF;
|
||||
phy->initval = 0xFFFF;
|
||||
|
||||
phy->aci_enable = 0;
|
||||
phy->aci_wlan_automatic = 0;
|
||||
phy->aci_hw_rssi = 0;
|
||||
phy->aci_enable = false;
|
||||
phy->aci_wlan_automatic = false;
|
||||
phy->aci_hw_rssi = false;
|
||||
|
||||
phy->antenna_diversity = 0xFFFF;
|
||||
memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
|
||||
@@ -3355,7 +3355,7 @@ static int b43legacy_op_add_interface(struct ieee80211_hw *hw,
|
||||
b43legacydbg(wl, "Adding Interface type %d\n", vif->type);
|
||||
|
||||
dev = wl->current_dev;
|
||||
wl->operating = 1;
|
||||
wl->operating = true;
|
||||
wl->vif = vif;
|
||||
wl->if_type = vif->type;
|
||||
memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
|
||||
@@ -3389,7 +3389,7 @@ static void b43legacy_op_remove_interface(struct ieee80211_hw *hw,
|
||||
B43legacy_WARN_ON(wl->vif != vif);
|
||||
wl->vif = NULL;
|
||||
|
||||
wl->operating = 0;
|
||||
wl->operating = false;
|
||||
|
||||
spin_lock_irqsave(&wl->irq_lock, flags);
|
||||
b43legacy_adjust_opmode(dev);
|
||||
@@ -3413,10 +3413,10 @@ static int b43legacy_op_start(struct ieee80211_hw *hw)
|
||||
memset(wl->bssid, 0, ETH_ALEN);
|
||||
memset(wl->mac_addr, 0, ETH_ALEN);
|
||||
wl->filter_flags = 0;
|
||||
wl->beacon0_uploaded = 0;
|
||||
wl->beacon1_uploaded = 0;
|
||||
wl->beacon_templates_virgin = 1;
|
||||
wl->radio_enabled = 1;
|
||||
wl->beacon0_uploaded = false;
|
||||
wl->beacon1_uploaded = false;
|
||||
wl->beacon_templates_virgin = true;
|
||||
wl->radio_enabled = true;
|
||||
|
||||
mutex_lock(&wl->mutex);
|
||||
|
||||
@@ -3455,7 +3455,7 @@ static void b43legacy_op_stop(struct ieee80211_hw *hw)
|
||||
if (b43legacy_status(dev) >= B43legacy_STAT_STARTED)
|
||||
b43legacy_wireless_core_stop(dev);
|
||||
b43legacy_wireless_core_exit(dev);
|
||||
wl->radio_enabled = 0;
|
||||
wl->radio_enabled = false;
|
||||
mutex_unlock(&wl->mutex);
|
||||
}
|
||||
|
||||
@@ -3614,7 +3614,7 @@ static int b43legacy_wireless_core_attach(struct b43legacy_wldev *dev)
|
||||
have_bphy = 1;
|
||||
|
||||
dev->phy.gmode = (have_gphy || have_bphy);
|
||||
dev->phy.radio_on = 1;
|
||||
dev->phy.radio_on = true;
|
||||
tmp = dev->phy.gmode ? B43legacy_TMSLOW_GMODE : 0;
|
||||
b43legacy_wireless_core_reset(dev, tmp);
|
||||
|
||||
@@ -3705,7 +3705,7 @@ static int b43legacy_one_core_attach(struct ssb_device *dev,
|
||||
(void (*)(unsigned long))b43legacy_interrupt_tasklet,
|
||||
(unsigned long)wldev);
|
||||
if (modparam_pio)
|
||||
wldev->__using_pio = 1;
|
||||
wldev->__using_pio = true;
|
||||
INIT_LIST_HEAD(&wldev->list);
|
||||
|
||||
err = b43legacy_wireless_core_attach(wldev);
|
||||
|
Reference in New Issue
Block a user