From 2b5d3dc869494d1437ff146347fe178468263412 Mon Sep 17 00:00:00 2001 From: Libo Chen Date: Wed, 19 Jun 2013 10:05:26 +1000 Subject: [PATCH] drivers/media/pci/mantis/hopper_cards.c: convert to module_pci_driver Signed-off-by: Libo Chen Cc: Mauro Carvalho Chehab Signed-off-by: Andrew Morton --- drivers/media/pci/mantis/hopper_cards.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/drivers/media/pci/mantis/hopper_cards.c b/drivers/media/pci/mantis/hopper_cards.c index 6fe9fe5293dc..104914a5bf06 100644 --- a/drivers/media/pci/mantis/hopper_cards.c +++ b/drivers/media/pci/mantis/hopper_cards.c @@ -260,18 +260,7 @@ static struct pci_driver hopper_pci_driver = { .remove = hopper_pci_remove, }; -static int hopper_init(void) -{ - return pci_register_driver(&hopper_pci_driver); -} - -static void hopper_exit(void) -{ - return pci_unregister_driver(&hopper_pci_driver); -} - -module_init(hopper_init); -module_exit(hopper_exit); +module_pci_driver(hopper_pci_driver); MODULE_DESCRIPTION("HOPPER driver"); MODULE_AUTHOR("Manu Abraham"); -- 2.39.5