Commit 6dd11195 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: lirc: 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: Mauro Carvalho Chehab <mchehab@infradead.org>
Cc: linux-media@vger.kernel.org
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2a91a6d1
...@@ -588,7 +588,7 @@ static int lirc_parallel_probe(struct platform_device *dev) ...@@ -588,7 +588,7 @@ static int lirc_parallel_probe(struct platform_device *dev)
return 0; return 0;
} }
static int __devexit lirc_parallel_remove(struct platform_device *dev) static int lirc_parallel_remove(struct platform_device *dev)
{ {
return 0; return 0;
} }
......
...@@ -927,7 +927,7 @@ static int lirc_serial_probe(struct platform_device *dev) ...@@ -927,7 +927,7 @@ static int lirc_serial_probe(struct platform_device *dev)
return result; 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); free_irq(irq, (void *)&hardware);
......
...@@ -1223,7 +1223,7 @@ static int lirc_sir_probe(struct platform_device *dev) ...@@ -1223,7 +1223,7 @@ static int lirc_sir_probe(struct platform_device *dev)
return 0; return 0;
} }
static int __devexit lirc_sir_remove(struct platform_device *dev) static int lirc_sir_remove(struct platform_device *dev)
{ {
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment