Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8753298a authored by Roger Quadros's avatar Roger Quadros Committed by Linus Torvalds
Browse files

omap_hsmmc: add missing probe handler hook



The missing probe handler hook will never probe the driver. Add it back.
Fixes broken MMC on OMAP.

We use platform_driver_probe() API since omap_hsmmc is not a hot-pluggable
device.

Signed-off-by: default avatarRoger Quadros <ext-roger.quadros@nokia.com>
Tested-by: default avatarFelipe Contreras <felipe.contreras@gmail.com>
Tested-by: default avatarTony Lindgren <tony@atomide.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Felipe Contreras <felipe.contreras@gmail.com>
Cc: Denis Karpov <ext-denis.2.karpov@nokia.com>
Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
Cc: Greg KH <gregkh@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0a1b71b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2013,7 +2013,7 @@ static struct platform_driver omap_hsmmc_driver = {
static int __init omap_hsmmc_init(void)
{
	/* Register the MMC driver */
	return platform_driver_register(&omap_hsmmc_driver);
	return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
}

static void __exit omap_hsmmc_cleanup(void)