Skip to content

Commit e77ae29

Browse files
committed
dts: bindings: Rename gpio-radio-coex to radio-gpio-coex
Rename GPIO coex binding to use 'radio-' prefix for consistency with other radio bindings (radio.yaml, radio-fem-two-ctrl-pins.yaml). Updated beacon sample overlay and coex documentation. Signed-off-by: Ivan Pankratov <[email protected]>
1 parent eb2e96c commit e77ae29

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dts/bindings/net/wireless/gpio-radio-coex.yaml renamed to dts/bindings/net/wireless/radio-gpio-coex.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: |
1313
transceiver begins their transmission. This is specified by the
1414
grant-delay-us property.
1515
16-
compatible: "gpio-radio-coex"
16+
compatible: "radio-gpio-coex"
1717

1818
include: base.yaml
1919

samples/bluetooth/beacon/boards/nrf52840dk_nrf52840.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/ {
77
coex_gpio: coex {
8-
compatible = "gpio-radio-coex";
8+
compatible = "radio-gpio-coex";
99
grant-gpios = <&gpio1 0 (GPIO_PULL_DOWN | GPIO_ACTIVE_LOW)>;
1010
grant-delay-us = <150>;
1111
};

subsys/bluetooth/controller/coex/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
menuconfig BT_CTLR_COEX_DRIVERS
77
bool "Bluetooth Co-existence Drivers"
88
default y
9-
depends on HAS_BT_CTLR && DT_HAS_GPIO_RADIO_COEX_ENABLED
9+
depends on HAS_BT_CTLR && DT_HAS_RADIO_GPIO_COEX_ENABLED
1010

1111
if BT_CTLR_COEX_DRIVERS
1212

subsys/bluetooth/controller/coex/coex_ticker.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
#define DT_DRV_COMPAT gpio_radio_coex
7+
#define DT_DRV_COMPAT radio_gpio_coex
88

99
#include <errno.h>
1010
#include <soc.h>

subsys/bluetooth/controller/coex/readme.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Similarly, as in the nordic implementation of the 1-wire interface, the coexiste
1414
.. code-block:: DTS
1515
1616
coex_gpio: coex {
17-
compatible = "gpio-radio-coex";
17+
compatible = "radio-gpio-coex";
1818
grant-gpios = <&gpio0 0 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
1919
grant-delay-us = <150>;
2020
};

0 commit comments

Comments
 (0)