Skip to content

Commit

Permalink
V4L/DVB (4711): Radio: No need to return void
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tobias Klauser authored and Mauro Carvalho Chehab committed Oct 4, 2006
1 parent 003138c commit 1396275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/radio/radio-gemtek-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>" );
Expand Down

0 comments on commit 1396275

Please sign in to comment.