mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
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:
parent
003138cf52
commit
1396275319
@ -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>" );
|
||||
|
Loading…
Reference in New Issue
Block a user