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

Commit 7759f2ea authored by Bill Pemberton's avatar Bill Pemberton Committed by Mark Brown
Browse files

ASoC: mid-x86: remove __dev* attributes



CONFIG_HOTPLUG is going away as an option.  As result the __dev*
markings will be going away.

Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent d6a29e3d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -358,7 +358,7 @@ static irqreturn_t snd_mfld_jack_detection(int irq, void *data)
	return IRQ_HANDLED;
}

static int __devinit snd_mfld_mc_probe(struct platform_device *pdev)
static int snd_mfld_mc_probe(struct platform_device *pdev)
{
	int ret_val = 0, irq;
	struct mfld_mc_private *mc_drv_ctx;
@@ -417,7 +417,7 @@ static int __devinit snd_mfld_mc_probe(struct platform_device *pdev)
	return ret_val;
}

static int __devexit snd_mfld_mc_remove(struct platform_device *pdev)
static int snd_mfld_mc_remove(struct platform_device *pdev)
{
	struct mfld_mc_private *mc_drv_ctx = platform_get_drvdata(pdev);

@@ -435,7 +435,7 @@ static struct platform_driver snd_mfld_mc_driver = {
		.name = "msic_audio",
	},
	.probe = snd_mfld_mc_probe,
	.remove = __devexit_p(snd_mfld_mc_remove),
	.remove = snd_mfld_mc_remove,
};

module_platform_driver(snd_mfld_mc_driver);