aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2006-10-04 08:09:10 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-10-04 08:15:38 -0300
commit13962753190a43fcc2b4a38d064f05d667691cc8 (patch)
treeaa8a87c107c0833bcd04f4c3a25524db54fffc77 /drivers
parent003138cf52bd1eec59cb468334b0396fbfbf66cd (diff)
downloadlinux-13962753190a43fcc2b4a38d064f05d667691cc8.tar.gz
V4L/DVB (4711): Radio: No need to return void
The module_exit function has return-type void and pci_unregister_driver() returns void anyway. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/radio/radio-gemtek-pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c
index cfab57d6bc4a7..eb14106f66fa2 100644
--- a/drivers/media/radio/radio-gemtek-pci.c
+++ b/drivers/media/radio/radio-gemtek-pci.c
@@ -449,7 +449,7 @@ static int __init gemtek_pci_init_module( void )
static void __exit gemtek_pci_cleanup_module( void )
{
- return pci_unregister_driver( &gemtek_pci_driver );
+ pci_unregister_driver(&gemtek_pci_driver);
}
MODULE_AUTHOR( "Vladimir Shebordaev <vshebordaev@mail.ru>" );