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>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
003138cf52
commit
1396275319
@@ -449,7 +449,7 @@ static int __init gemtek_pci_init_module( void )
|
|||||||
|
|
||||||
static void __exit gemtek_pci_cleanup_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>" );
|
MODULE_AUTHOR( "Vladimir Shebordaev <vshebordaev@mail.ru>" );
|
||||||
|
Reference in New Issue
Block a user