On Fri, Nov 19, 2010 at 5:41 PM, Michael BÃsch <mb@xxxxxxxxx> wrote: > On Fri, 2010-11-19 at 17:12 +0100, GÃbor Stefanik wrote: >> 2010/11/17 RafaÅ MiÅecki <zajec5@xxxxxxxxx>: >> > Devices which use LO enabled bit are covered by b43legacy >> > >> > Signed-off-by: RafaÅ MiÅecki <zajec5@xxxxxxxxx> >> > --- >> > V2: Dropped some not needed stuff as pointed by Michael, thanks! >> > >> > John: it's .38 ofc. >> > --- >> > Âdrivers/net/wireless/b43/rfkill.c | Â 19 ++----------------- >> > Â1 files changed, 2 insertions(+), 17 deletions(-) >> > >> > diff --git a/drivers/net/wireless/b43/rfkill.c b/drivers/net/wireless/b43/rfkill.c >> > index 78016ae..86bc0a0 100644 >> > --- a/drivers/net/wireless/b43/rfkill.c >> > +++ b/drivers/net/wireless/b43/rfkill.c >> > @@ -28,23 +28,8 @@ >> > Â/* Returns TRUE, if the radio is enabled in hardware. */ >> > Âbool b43_is_hw_radio_enabled(struct b43_wldev *dev) >> > Â{ >> > - Â Â Â if (dev->phy.rev >= 3 || dev->phy.type == B43_PHYTYPE_LP) { >> > - Â Â Â Â Â Â Â if (!(b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI) >> > - Â Â Â Â Â Â Â Â Â Â & B43_MMIO_RADIO_HWENABLED_HI_MASK)) >> > - Â Â Â Â Â Â Â Â Â Â Â return 1; >> > - Â Â Â } else { >> > - Â Â Â Â Â Â Â /* To prevent CPU fault on PPC, do not read a register >> > - Â Â Â Â Â Â Â Â* unless the interface is started; however, on resume >> > - Â Â Â Â Â Â Â Â* for hibernation, this routine is entered early. When >> > - Â Â Â Â Â Â Â Â* that happens, unconditionally return TRUE. >> > - Â Â Â Â Â Â Â Â*/ >> > - Â Â Â Â Â Â Â if (b43_status(dev) < B43_STAT_STARTED) >> > - Â Â Â Â Â Â Â Â Â Â Â return 1; >> > - Â Â Â Â Â Â Â if (b43_read16(dev, B43_MMIO_RADIO_HWENABLED_LO) >> > - Â Â Â Â Â Â Â Â Â & B43_MMIO_RADIO_HWENABLED_LO_MASK) >> > - Â Â Â Â Â Â Â Â Â Â Â return 1; >> > - Â Â Â } >> > - Â Â Â return 0; >> >> Is there any reason why this bool originally returned 1 or 0 instead >> of true or false? > > There's no difference. > (int)0 implicitly casts to false and anything else to true. I know, just for the sake of coding style. Same as initializing pointers to NULL, not 0 (though AFAIK there are platforms where 0x0 is a valid memory address, so using NULL is more than just coding style). > > -- > Greetings Michael. > > -- Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-) -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html