Re: git: a4e30909ec98 - main - qoriq: fix spelling in device_set_desc()

From: Kevin Bowling <kevin.bowling_at_kev009.com>
Date: Tue, 24 Feb 2026 23:04:53 UTC
On Tue, Feb 24, 2026 at 3:09 PM Bjoern A. Zeeb <bz@freebsd.org> wrote:
>
> The branch main has been updated by bz:
>
> URL: https://cgit.FreeBSD.org/src/commit/?id=a4e30909ec983f7986954e6c509ea21422561d84
>
> commit a4e30909ec983f7986954e6c509ea21422561d84
> Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
> AuthorDate: 2026-02-19 23:10:34 +0000
> Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
> 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");

This should probably be NXP not NPX?

>         return (BUS_PROBE_DEFAULT);
>  }
>
>