Skip to content

Commit d9943c6

Browse files
Javier Martinez Canillasstorulf
authored andcommitted
mmc: sdhci-of-at91: Fix module autoload
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/mmc/host/sdhci-of-at91.ko | grep alias $ After this patch: $ modinfo drivers/mmc/host/sdhci-of-at91.ko | grep alias alias: of:N*T*Catmel,sama5d2-sdhciC* alias: of:N*T*Catmel,sama5d2-sdhci Signed-off-by: Javier Martinez Canillas <[email protected]> Acked-by: Ludovic Desroches <[email protected]> Acked-by: Adrian Hunter <[email protected]> Signed-off-by: Ulf Hansson <[email protected]>
1 parent 9cb02ee commit d9943c6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/mmc/host/sdhci-of-at91.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ static const struct of_device_id sdhci_at91_dt_match[] = {
100100
{ .compatible = "atmel,sama5d2-sdhci", .data = &soc_data_sama5d2 },
101101
{}
102102
};
103+
MODULE_DEVICE_TABLE(of, sdhci_at91_dt_match);
103104

104105
#ifdef CONFIG_PM
105106
static int sdhci_at91_runtime_suspend(struct device *dev)

0 commit comments

Comments
 (0)