From: Devendra Naga Date: Tue, 10 Jul 2012 06:46:30 +0000 (+0530) Subject: staging/phison: use module_pci_driver macro X-Git-Tag: v3.6-rc1~100^2~300 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d44858a9b4abc1fb94f0dae587fbd1807bb3c576;p=pandora-kernel.git staging/phison: use module_pci_driver macro remove the duplication of module_pci_driver and use this macro instead module_pci_driver macro does the same things as the code below does static int __init pci_test_dev_init(void) { return pci_register_driver(&pci_test_driver_ops); } static void __exit pci_test_dev_exit(void) { pci_unregister_driver(&pci_test_driver_ops); } module_init(pci_test_dev_init); module_exit(pci_test_dev_exit); Signed-off-by: Devendra Naga Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed