aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2026-02-24 23:12:46 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2026-02-24 23:12:46 +0000
commitc3ed2f3e414497ab3cf6ade17e52a87f07a547e6 (patch)
treeefef86c5e5eb2b0baec390a7e86860b588ecdf54
parentfc9369abef6b6993e79b08de832e1d49f81a17b9 (diff)
qoriq / nxp: Fix spelling take II
Fix spelling of NXP, which is not NPX, in two places. Improves: a4e30909ec98 Reported by: Kevin Bowling (kevin.bowling kev009.com), qoriq_dw_pci.c MFC after: 3 days
-rw-r--r--sys/arm64/conf/std.nxp2
-rw-r--r--sys/arm64/qoriq/qoriq_dw_pci.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/arm64/conf/std.nxp b/sys/arm64/conf/std.nxp
index b4552fadaff4..367d058bf666 100644
--- a/sys/arm64/conf/std.nxp
+++ b/sys/arm64/conf/std.nxp
@@ -6,7 +6,7 @@
options SOC_NXP_LS
# I2C
-device pca954x # NPX I2C bus multiplexer / switches
+device pca954x # NXP I2C bus multiplexer / switches
device pcf8563 # NXP Real-time clock/calendar
device tca64xx # NXP I2C gpio expander
device pcf85063 # NXP Real-time clock
diff --git a/sys/arm64/qoriq/qoriq_dw_pci.c b/sys/arm64/qoriq/qoriq_dw_pci.c
index 7d51db2a9505..f4ca024c941f 100644
--- a/sys/arm64/qoriq/qoriq_dw_pci.c
+++ b/sys/arm64/qoriq/qoriq_dw_pci.c
@@ -176,7 +176,7 @@ qorif_dw_pci_probe(device_t dev)
if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
return (ENXIO);
- device_set_desc(dev, "NPX Layerscape PCI-E Controller");
+ device_set_desc(dev, "NXP QorIQ Layerscape PCI-E Controller");
return (BUS_PROBE_DEFAULT);
}