sdhci-spear.c (851462444d421c223965b12b836bef63da61b57f) | sdhci-spear.c (0433c14356702e296f474f77ebd42f0a9d9a5487) |
---|---|
1/* 2 * drivers/mmc/host/sdhci-spear.c 3 * 4 * Support of SDHCI platform devices for spear soc family 5 * 6 * Copyright (C) 2010 ST Microelectronics 7 * Viresh Kumar <viresh.linux@gmail.com> 8 * --- 322 unchanged lines hidden (view full) --- 331static struct platform_driver sdhci_driver = { 332 .driver = { 333 .name = "sdhci", 334 .owner = THIS_MODULE, 335 .pm = &sdhci_pm_ops, 336 .of_match_table = of_match_ptr(sdhci_spear_id_table), 337 }, 338 .probe = sdhci_probe, | 1/* 2 * drivers/mmc/host/sdhci-spear.c 3 * 4 * Support of SDHCI platform devices for spear soc family 5 * 6 * Copyright (C) 2010 ST Microelectronics 7 * Viresh Kumar <viresh.linux@gmail.com> 8 * --- 322 unchanged lines hidden (view full) --- 331static struct platform_driver sdhci_driver = { 332 .driver = { 333 .name = "sdhci", 334 .owner = THIS_MODULE, 335 .pm = &sdhci_pm_ops, 336 .of_match_table = of_match_ptr(sdhci_spear_id_table), 337 }, 338 .probe = sdhci_probe, |
339 .remove = __devexit_p(sdhci_remove), | 339 .remove = sdhci_remove, |
340}; 341 342module_platform_driver(sdhci_driver); 343 344MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver"); 345MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>"); 346MODULE_LICENSE("GPL v2"); | 340}; 341 342module_platform_driver(sdhci_driver); 343 344MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver"); 345MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>"); 346MODULE_LICENSE("GPL v2"); |