From: Jarkko Nikula Date: Thu, 21 Sep 2023 05:56:54 +0000 (+0300) Subject: i3c: mipi-i3c-hci: Add MODULE_ALIAS X-Git-Tag: v6.7-rc1~58^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f656f6bd22d7cd08b55c6495fcfaa391c2eb933f;p=thirdparty%2Flinux.git i3c: mipi-i3c-hci: Add MODULE_ALIAS Add MODULE_ALIAS() in order to be able to autoload this driver when the device is added as a platform device from another glue code driver. Signed-off-by: Jarkko Nikula Link: https://lore.kernel.org/r/20230921055704.1087277-3-jarkko.nikula@linux.intel.com Signed-off-by: Alexandre Belloni --- diff --git a/drivers/i3c/master/mipi-i3c-hci/core.c b/drivers/i3c/master/mipi-i3c-hci/core.c index 837af83c85f4e..8f43ad81fbfdd 100644 --- a/drivers/i3c/master/mipi-i3c-hci/core.c +++ b/drivers/i3c/master/mipi-i3c-hci/core.c @@ -787,6 +787,7 @@ static struct platform_driver i3c_hci_driver = { }, }; module_platform_driver(i3c_hci_driver); +MODULE_ALIAS("platform:mipi-i3c-hci"); MODULE_AUTHOR("Nicolas Pitre "); MODULE_DESCRIPTION("MIPI I3C HCI driver");