diff options
-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 ff195c230825..d58e22b9f06a 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) | |||
359 | BT_ERR("Very strange (stat=0x%04x)", stat); | 359 | BT_ERR("Very strange (stat=0x%04x)", stat); |
360 | } else if ((stat & 0xff) != 0xff) { | 360 | } else if ((stat & 0xff) != 0xff) { |
361 | if (stat & 0x0020) { | 361 | if (stat & 0x0020) { |
362 | int stat = bt3c_read(iobase, 0x7002) & 0x10; | 362 | int status = bt3c_read(iobase, 0x7002) & 0x10; |
363 | BT_INFO("%s: Antenna %s", info->hdev->name, | 363 | BT_INFO("%s: Antenna %s", info->hdev->name, |
364 | stat ? "out" : "in"); | 364 | status ? "out" : "in"); |
365 | } | 365 | } |
366 | if (stat & 0x0001) | 366 | if (stat & 0x0001) |
367 | bt3c_receive(info); | 367 | bt3c_receive(info); |