Commit 2d991a16 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

watchdog: remove use of __devinit



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

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Wim Van Sebroeck <wim@iguana.be>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 82268714
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ static struct miscdevice acq_miscdev = {
 *	Init & exit routines
 */

static int __devinit acq_probe(struct platform_device *dev)
static int acq_probe(struct platform_device *dev)
{
	int ret;

+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ static struct miscdevice advwdt_miscdev = {
 *	Init & exit routines
 */

static int __devinit advwdt_probe(struct platform_device *dev)
static int advwdt_probe(struct platform_device *dev)
{
	int ret;

+1 −1
Original line number Diff line number Diff line
@@ -274,7 +274,7 @@ static struct miscdevice ar7_wdt_miscdev = {
	.fops		= &ar7_wdt_fops,
};

static int __devinit ar7_wdt_probe(struct platform_device *pdev)
static int ar7_wdt_probe(struct platform_device *pdev)
{
	int rc;

+1 −1
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ static struct miscdevice at91wdt_miscdev = {
	.fops		= &at91wdt_fops,
};

static int __devinit at91wdt_probe(struct platform_device *pdev)
static int at91wdt_probe(struct platform_device *pdev)
{
	int res;

+1 −1
Original line number Diff line number Diff line
@@ -224,7 +224,7 @@ static struct miscdevice ath79_wdt_miscdev = {
	.fops = &ath79_wdt_fops,
};

static int __devinit ath79_wdt_probe(struct platform_device *pdev)
static int ath79_wdt_probe(struct platform_device *pdev)
{
	u32 ctrl;
	int err;
Loading