diff options
author | Andre Haupt <andre@bitwigglers.org> | 2009-02-02 14:45:11 -0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-02-27 06:14:35 +0100 |
commit | 34a55eda483e8177c9044f93fd2c9107f02bf1c7 (patch) | |
tree | 0382f41dded5e5df781e521dd8a570603566addc /drivers/bluetooth | |
parent | dd2efd03b49d56ae795c71335bc7358022514c32 (diff) | |
download | linux-3.10-34a55eda483e8177c9044f93fd2c9107f02bf1c7.tar.gz linux-3.10-34a55eda483e8177c9044f93fd2c9107f02bf1c7.tar.bz2 linux-3.10-34a55eda483e8177c9044f93fd2c9107f02bf1c7.zip |
Bluetooth: Eliminate a sparse warning in bt3c driver
This eliminates a sparse warning that symbol 'stat' shadows an earlier one.
Signed-off-by: Andre Haupt <andre@bitwigglers.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index ff195c23082..d58e22b9f06 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c @@ -359,9 +359,9 @@ static irqreturn_t bt3c_interrupt(int irq, void *dev_inst) BT_ERR("Very strange (stat=0x%04x)", stat); } else if ((stat & 0xff) != 0xff) { if (stat & 0x0020) { - int stat = bt3c_read(iobase, 0x7002) & 0x10; + int status = bt3c_read(iobase, 0x7002) & 0x10; BT_INFO("%s: Antenna %s", info->hdev->name, - stat ? "out" : "in"); + status ? "out" : "in"); } if (stat & 0x0001) bt3c_receive(info); |