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>

authored by Tobias Klauser and committed by Mauro Carvalho Chehab 13962753 003138cf

+1 -1
+1 -1
drivers/media/radio/radio-gemtek-pci.c
··· 449 449 450 450 static void __exit gemtek_pci_cleanup_module( void ) 451 451 { 452 - return pci_unregister_driver( &gemtek_pci_driver ); 452 + pci_unregister_driver(&gemtek_pci_driver); 453 453 } 454 454 455 455 MODULE_AUTHOR( "Vladimir Shebordaev <vshebordaev@mail.ru>" );