From: Kay Sievers Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS with "platform:"), the platform modalias is prefixed with "platform:". Add MODULE_ALIAS() to the hotpluggable parport platform drivers, to re-enable auto loading. Signed-off-by: Kay Sievers Signed-off-by: David Brownell Cc: Cc: Greg KH Cc: "Rafael J. Wysocki" Signed-off-by: Andrew Morton --- drivers/parport/parport_ax88796.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/parport/parport_ax88796.c~parport-fix-platform-driver-hotplug-coldplug drivers/parport/parport_ax88796.c --- a/drivers/parport/parport_ax88796.c~parport-fix-platform-driver-hotplug-coldplug +++ a/drivers/parport/parport_ax88796.c @@ -406,6 +406,8 @@ static int parport_ax88796_resume(struct #define parport_ax88796_resume NULL #endif +MODULE_ALIAS("platform:ax88796-pp"); + static struct platform_driver axdrv = { .driver = { .name = "ax88796-pp", _