Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

misc: bmp085: devicetree irq update.

Document irq handling for bmp085.

Signed-off-by: Marek Belisko <marek@goldelico.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Marek Belisko and committed by
Greg Kroah-Hartman
b0abd6ee c07f85c5

+4
+4
Documentation/devicetree/bindings/misc/bmp085.txt
··· 8 8 - temp-measurement-period: temperature measurement period (milliseconds) 9 9 - default-oversampling: default oversampling value to be used at startup, 10 10 value range is 0-3 with rising sensitivity. 11 + - interrupt-parent: should be the phandle for the interrupt controller 12 + - interrupts: interrupt mapping for IRQ 11 13 12 14 Example: 13 15 ··· 19 17 chip-id = <10>; 20 18 temp-measurement-period = <100>; 21 19 default-oversampling = <2>; 20 + interrupt-parent = <&gpio0>; 21 + interrupts = <25 IRQ_TYPE_EDGE_RISING>; 22 22 };