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

Commit 810b7e06 authored by Bill Pemberton's avatar Bill Pemberton Committed by Artem Bityutskiy
Browse files

mtd: 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>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
parent 5e75e86e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ static int bcm47xxsflash_probe(struct platform_device *pdev)
	return err;
}

static int __devexit bcm47xxsflash_remove(struct platform_device *pdev)
static int bcm47xxsflash_remove(struct platform_device *pdev)
{
	struct bcma_sflash *sflash = dev_get_platdata(&pdev->dev);

+1 −1
Original line number Diff line number Diff line
@@ -433,7 +433,7 @@ static int __init block2mtd_init(void)
}


static void __devexit block2mtd_exit(void)
static void block2mtd_exit(void)
{
	struct list_head *pos, *next;

+1 −1
Original line number Diff line number Diff line
@@ -972,7 +972,7 @@ static int m25p_probe(struct spi_device *spi)
}


static int __devexit m25p_remove(struct spi_device *spi)
static int m25p_remove(struct spi_device *spi)
{
	struct m25p	*flash = dev_get_drvdata(&spi->dev);
	int		status;
+1 −1
Original line number Diff line number Diff line
@@ -897,7 +897,7 @@ static int dataflash_probe(struct spi_device *spi)
	return status;
}

static int __devexit dataflash_remove(struct spi_device *spi)
static int dataflash_remove(struct spi_device *spi)
{
	struct dataflash	*flash = dev_get_drvdata(&spi->dev);
	int			status;
+1 −1
Original line number Diff line number Diff line
@@ -1016,7 +1016,7 @@ static int spear_smi_probe(struct platform_device *pdev)
 *
 * free all allocations and delete the partitions.
 */
static int __devexit spear_smi_remove(struct platform_device *pdev)
static int spear_smi_remove(struct platform_device *pdev)
{
	struct spear_smi *dev;
	struct spear_snor_flash *flash;
Loading