boards: ezurio: Fix FEM name for BL654PA DVK

For Kconfig auto-configuration of the FEM in the MPSL,
the node in the device tree MUST be named
"nrf_radio_fem".

Signed-off-by: Randy Scott <randy.scott@ezurio.com>
This commit is contained in:
Randy Scott 2025-03-19 12:24:55 -05:00 committed by Benjamin Cabé
commit 66e0bcc117

View file

@ -9,7 +9,8 @@
/ { / {
/* Information from Nordic SDK-Based Application Development and SKY66112 datasheet */ /* Information from Nordic SDK-Based Application Development and SKY66112 datasheet */
sky66112_fem: fem { nrf_radio_fem: fem {
status = "okay";
compatible = "generic-fem-two-ctrl-pins"; compatible = "generic-fem-two-ctrl-pins";
ctx-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>; ctx-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
crx-gpios = <&gpio1 4 GPIO_ACTIVE_HIGH>; crx-gpios = <&gpio1 4 GPIO_ACTIVE_HIGH>;
@ -21,5 +22,5 @@
}; };
&radio { &radio {
fem = <&sky66112_fem>; fem = <&nrf_radio_fem>;
}; };