Commit 017e452e authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Greg Kroah-Hartman

usb: gadget: fusb300-udc: Convert to use module_platform_driver()

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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20231017204442.1625925-11-u.kleine-koenig@pengutronix.deSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2911016a
......@@ -1506,10 +1506,11 @@ static int fusb300_probe(struct platform_device *pdev)
}
static struct platform_driver fusb300_driver = {
.remove_new = fusb300_remove,
.driver = {
.probe = fusb300_probe,
.remove_new = fusb300_remove,
.driver = {
.name = udc_name,
},
};
module_platform_driver_probe(fusb300_driver, fusb300_probe);
module_platform_driver(fusb300_driver);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment