Commit b25e4df4 authored by Michał Mirosław's avatar Michał Mirosław Committed by Marcel Holtmann
Browse files

Bluetooth: hci_bcm: respect IRQ polarity from DT



The IRQ polarity is be configured in bcm_setup_sleep(). Make the
configured value match what is in the DeviceTree.

Cc: stable@vger.kernel.org
Fixes: f25a96c8 ("Bluetooth: hci_bcm: enable IRQ capability from devicetree")
Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 92516cd9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1153,7 +1153,8 @@ static int bcm_of_probe(struct bcm_device *bdev)
	device_property_read_u8_array(bdev->dev, "brcm,bt-pcm-int-params",
				      bdev->pcm_int_params, 5);
	bdev->irq = of_irq_get_byname(bdev->dev->of_node, "host-wakeup");

	bdev->irq_active_low = irq_get_trigger_type(bdev->irq)
			     & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW);
	return 0;
}