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

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: gnss: u-blox: use open-drain reset and safeboot in example

The RESET_N and SAFEBOOT_N pins should typically be left open and only
be connected to ground in rare cases where a device is misbehaving.

Specify GPIO_OPEN_DRAIN in the example as this is what should generally
be used.

Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Johan Hovold <johan@kernel.org>

+2 -2
+2 -2
Documentation/devicetree/bindings/gnss/u-blox,neo-6m.yaml
··· 67 67 compatible = "u-blox,neo-8"; 68 68 v-bckp-supply = <&gnss_v_bckp_reg>; 69 69 vcc-supply = <&gnss_vcc_reg>; 70 - reset-gpios = <&gpio 1 GPIO_ACTIVE_LOW>; 71 - safeboot-gpios = <&gpio 2 GPIO_ACTIVE_LOW>; 70 + reset-gpios = <&gpio 1 (GPIO_ACTIVE_LOW | GPIO_OPEN_DRAIN)>; 71 + safeboot-gpios = <&gpio 2 (GPIO_ACTIVE_LOW | GPIO_OPEN_DRAIN)>; 72 72 }; 73 73 };