staging: lirc: remove use of __devexit

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

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
Cc: linux-media@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bill Pemberton 2012-11-19 13:27:10 -05:00 committed by Greg Kroah-Hartman
parent 2a91a6d142
commit 6dd1119528
3 changed files with 3 additions and 3 deletions

View File

@ -588,7 +588,7 @@ static int lirc_parallel_probe(struct platform_device *dev)
return 0;
}
static int __devexit lirc_parallel_remove(struct platform_device *dev)
static int lirc_parallel_remove(struct platform_device *dev)
{
return 0;
}

View File

@ -927,7 +927,7 @@ exit_free_irq:
return result;
}
static int __devexit lirc_serial_remove(struct platform_device *dev)
static int lirc_serial_remove(struct platform_device *dev)
{
free_irq(irq, (void *)&hardware);

View File

@ -1223,7 +1223,7 @@ static int lirc_sir_probe(struct platform_device *dev)
return 0;
}
static int __devexit lirc_sir_remove(struct platform_device *dev)
static int lirc_sir_remove(struct platform_device *dev)
{
return 0;
}