The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=a4e30909ec983f7986954e6c509ea21422561d84
commit a4e30909ec983f7986954e6c509ea21422561d84 Author: Bjoern A. Zeeb <[email protected]> AuthorDate: 2026-02-19 23:10:34 +0000 Commit: Bjoern A. Zeeb <[email protected]> CommitDate: 2026-02-24 22:04:36 +0000 qoriq: fix spelling in device_set_desc() The product series is called NXP QorIQ Layerscape. Remove the extra 'e. MFC after: 3 days Reviewed by: mmel, emaste Differential Revision: https://reviews.freebsd.org/D55388 --- sys/arm64/qoriq/qoriq_dw_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm64/qoriq/qoriq_dw_pci.c b/sys/arm64/qoriq/qoriq_dw_pci.c index b6eecba48c39..7d51db2a9505 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 Layaerscape PCI-E Controller"); + device_set_desc(dev, "NPX Layerscape PCI-E Controller"); return (BUS_PROBE_DEFAULT); }
