Skip to content

Commit 469e75d

Browse files
Javier Martinez Canillasgregkh
authored andcommitted
scsi: ufs-qcom: Fix module autoload
[ Upstream commit ab3dabb3e8cf077850f20610f73a0def1fed10cb ] If the driver is built as a module, autoload won't work because the module alias information is not filled. So user-space can't match the registered device with the corresponding module. Export the module alias information using the MODULE_DEVICE_TABLE() macro. Before this patch: $ modinfo drivers/scsi/ufs/ufs-qcom.ko | grep alias $ After this patch: $ modinfo drivers/scsi/ufs/ufs-qcom.ko | grep alias alias: of:N*T*Cqcom,ufshcC* alias: of:N*T*Cqcom,ufshc Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Reviewed-by: Subhash Jadavani <subhashj@codeaurora.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent bb848b6 commit 469e75d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/scsi/ufs/ufs-qcom.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1552,6 +1552,7 @@ static const struct of_device_id ufs_qcom_of_match[] = {
15521552
{ .compatible = "qcom,ufshc"},
15531553
{},
15541554
};
1555+
MODULE_DEVICE_TABLE(of, ufs_qcom_of_match);
15551556

15561557
static const struct dev_pm_ops ufs_qcom_pm_ops = {
15571558
.suspend = ufshcd_pltfrm_suspend,

0 commit comments

Comments
 (0)