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

Commit 6e0ee714 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

mmc: remove use of __devexit



CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Manuel Lauss <manuel.lauss@gmail.com>
Cc: Chris Ball <cjb@laptop.org>
Cc: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
Cc: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Cc: Venkatraman S <svenkatr@ti.com>
Cc: Viresh Kumar <viresh.linux@gmail.com>
Cc: Ian Molton <ian@mnementh.co.uk>
Cc: Bruce Chang <brucechang@via.com.tw>
Cc: Harald Welte <HaraldWelte@viatech.com>
Cc: Pierre Ossman <pierre@ossman.eu>
Acked-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9647f84d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1114,7 +1114,7 @@ static int au1xmmc_probe(struct platform_device *pdev)
	return ret;
}

static int __devexit au1xmmc_remove(struct platform_device *pdev)
static int au1xmmc_remove(struct platform_device *pdev)
{
	struct au1xmmc_host *host = platform_get_drvdata(pdev);

+1 −1
Original line number Diff line number Diff line
@@ -617,7 +617,7 @@ static int sdh_probe(struct platform_device *pdev)
	return ret;
}

static int __devexit sdh_remove(struct platform_device *pdev)
static int sdh_remove(struct platform_device *pdev)
{
	struct mmc_host *mmc = platform_get_drvdata(pdev);

+1 −1
Original line number Diff line number Diff line
@@ -746,7 +746,7 @@ static int cb710_mmc_init(struct platform_device *pdev)
	return err;
}

static int __devexit cb710_mmc_exit(struct platform_device *pdev)
static int cb710_mmc_exit(struct platform_device *pdev)
{
	struct cb710_slot *slot = cb710_pdev_to_slot(pdev);
	struct mmc_host *mmc = cb710_slot_to_mmc(slot);
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ static int dw_mci_pci_probe(struct pci_dev *pdev,
	return ret;
}

static void __devexit dw_mci_pci_remove(struct pci_dev *pdev)
static void dw_mci_pci_remove(struct pci_dev *pdev)
{
	struct dw_mci *host = pci_get_drvdata(pdev);

+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ static int dw_mci_pltfm_probe(struct platform_device *pdev)
	return dw_mci_pltfm_register(pdev, NULL);
}

static int __devexit dw_mci_pltfm_remove(struct platform_device *pdev)
static int dw_mci_pltfm_remove(struct platform_device *pdev)
{
	struct dw_mci *host = platform_get_drvdata(pdev);

Loading