dts: bindings: rename nxp,kinetis-adc12 compatible

Rename "nxp,kinetis-adc12" compatible to "nxp,adc12" to remove the
device family from its name.

Signed-off-by: Manuel Argüelles <manuel.arguelles@nxp.com>
This commit is contained in:
Manuel Argüelles 2024-11-24 15:01:33 +07:00 committed by Benjamin Cabé
commit 2f7402d14a
7 changed files with 11 additions and 11 deletions

View file

@ -6,7 +6,7 @@
config ADC_MCUX_ADC12 config ADC_MCUX_ADC12
bool "MCUX ADC12 driver" bool "MCUX ADC12 driver"
default y default y
depends on DT_HAS_NXP_KINETIS_ADC12_ENABLED depends on DT_HAS_NXP_ADC12_ENABLED
select PINCTRL select PINCTRL
help help
Enable the MCUX ADC12 driver. Enable the MCUX ADC12 driver.

View file

@ -7,7 +7,7 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
#define DT_DRV_COMPAT nxp_kinetis_adc12 #define DT_DRV_COMPAT nxp_adc12
#include <zephyr/drivers/adc.h> #include <zephyr/drivers/adc.h>
#include <fsl_adc12.h> #include <fsl_adc12.h>

View file

@ -103,7 +103,7 @@ static struct adc_hdl {
DT_FOREACH_STATUS_OKAY(nordic_nrf_saadc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nordic_nrf_saadc, ADC_HDL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nuvoton_npcx_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nuvoton_npcx_adc, ADC_HDL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nuvoton_numaker_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nuvoton_numaker_adc, ADC_HDL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nxp_kinetis_adc12, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_adc12, ADC_HDL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nxp_kinetis_adc16, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_kinetis_adc16, ADC_HDL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nxp_lpc_lpadc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_lpc_lpadc, ADC_HDL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nxp_mcux_12b1msps_sar, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_mcux_12b1msps_sar, ADC_HDL_LIST_ENTRY)

View file

@ -502,7 +502,7 @@
}; };
adc0: adc@4003b000 { adc0: adc@4003b000 {
compatible = "nxp,kinetis-adc12"; compatible = "nxp,adc12";
reg = <0x4003b000 0x1000>; reg = <0x4003b000 0x1000>;
interrupts = <39 0>; interrupts = <39 0>;
clocks = <&pcc 0xec KINETIS_PCC_SRC_FIRC_ASYNC>; clocks = <&pcc 0xec KINETIS_PCC_SRC_FIRC_ASYNC>;
@ -513,7 +513,7 @@
}; };
adc1: adc@40027000 { adc1: adc@40027000 {
compatible = "nxp,kinetis-adc12"; compatible = "nxp,adc12";
reg = <0x40027000 0x1000>; reg = <0x40027000 0x1000>;
interrupts = <73 0>; interrupts = <73 0>;
clocks = <&pcc 0x9c KINETIS_PCC_SRC_FIRC_ASYNC>; clocks = <&pcc 0x9c KINETIS_PCC_SRC_FIRC_ASYNC>;
@ -524,7 +524,7 @@
}; };
adc2: adc@4003c000 { adc2: adc@4003c000 {
compatible = "nxp,kinetis-adc12"; compatible = "nxp,adc12";
reg = <0x4003c000 0x1000>; reg = <0x4003c000 0x1000>;
interrupts = <74 0>; interrupts = <74 0>;
clocks = <&pcc 0xf0 KINETIS_PCC_SRC_FIRC_ASYNC>; clocks = <&pcc 0xf0 KINETIS_PCC_SRC_FIRC_ASYNC>;

View file

@ -142,7 +142,7 @@
}; };
adc0: adc@4003b000 { adc0: adc@4003b000 {
compatible = "nxp,kinetis-adc12"; compatible = "nxp,adc12";
reg = <0x4003b000 0x1000>; reg = <0x4003b000 0x1000>;
interrupts = <15 0>; interrupts = <15 0>;
clocks = <&pcc 0xec KINETIS_PCC_SRC_SIRC_ASYNC>; clocks = <&pcc 0xec KINETIS_PCC_SRC_SIRC_ASYNC>;

View file

@ -328,7 +328,7 @@
}; };
adc0: adc@4003b000 { adc0: adc@4003b000 {
compatible = "nxp,kinetis-adc12"; compatible = "nxp,adc12";
reg = <0x4003b000 0x1000>; reg = <0x4003b000 0x1000>;
interrupts = <39 0>; interrupts = <39 0>;
clk-source = <0>; clk-source = <0>;
@ -339,7 +339,7 @@
}; };
adc1: adc@40027000 { adc1: adc@40027000 {
compatible = "nxp,kinetis-adc12"; compatible = "nxp,adc12";
reg = <0x40027000 0x1000>; reg = <0x40027000 0x1000>;
interrupts = <40 0>; interrupts = <40 0>;
clk-source = <0>; clk-source = <0>;

View file

@ -1,9 +1,9 @@
# Copyright (c) 2019 Vestas Wind Systems A/S # Copyright (c) 2019 Vestas Wind Systems A/S
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
description: NXP Kinetis ADC12 description: NXP ADC12
compatible: "nxp,kinetis-adc12" compatible: "nxp,adc12"
include: [adc-controller.yaml, pinctrl-device.yaml] include: [adc-controller.yaml, pinctrl-device.yaml]