From: Alexander Stein Date: Mon, 23 Jan 2023 10:00:07 +0000 (+0100) Subject: usb: host: ehci-fsl: Use DRV_NAME X-Git-Tag: v6.3-rc1~110^2~138 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ba2e7cd986270dbb44eb693199a9d3dd3edf984;p=thirdparty%2Fkernel%2Flinux.git usb: host: ehci-fsl: Use DRV_NAME "fsl-ehci" is used for both MODULE_ALIAS and driver name. As they have to match use DRV_NAME in both locations. Acked-by: Alan Stern Signed-off-by: Alexander Stein Link: https://lore.kernel.org/r/20230123100007.1479090-1-alexander.stein@ew.tq-group.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c index 38d06e5abfbb3..d74fa5ba845b8 100644 --- a/drivers/usb/host/ehci-fsl.c +++ b/drivers/usb/host/ehci-fsl.c @@ -712,7 +712,7 @@ static struct platform_driver ehci_fsl_driver = { .remove = fsl_ehci_drv_remove, .shutdown = usb_hcd_platform_shutdown, .driver = { - .name = "fsl-ehci", + .name = DRV_NAME, .pm = EHCI_FSL_PM_OPS, }, };