usb: gadget: m66592-udc: Convert to use module_platform_driver()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 17 Oct 2023 20:44:48 +0000 (22:44 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 21 Oct 2023 10:47:24 +0000 (12:47 +0200)
module_platform_driver_probe() has the advantage that the .probe() and
.remove() calls can live in .init.text and .exit.text respectively and
so some memory is saved. The downside is that dynamic bind and unbind
are impossible. As the driver doesn't benefit from the advantages (both
.probe and .remove are defined in plain .text), stop suffering from the
downsides and use module_platform_driver() instead of
module_platform_driver_probe().

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20231017204442.1625925-13-u.kleine-koenig@pengutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/m66592-udc.c

index e05f45a4b56b2bf97bb16c828cea77a1ea355341..bfaa5291e6c83bd883c239a5fcd8a5447fb2878b 100644 (file)
@@ -1687,10 +1687,11 @@ clean_up:
 
 /*-------------------------------------------------------------------------*/
 static struct platform_driver m66592_driver = {
+       .probe =        m66592_probe,
        .remove_new =   m66592_remove,
        .driver         = {
                .name = udc_name,
        },
 };
 
-module_platform_driver_probe(m66592_driver, m66592_probe);
+module_platform_driver(m66592_driver);