All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] scsi: initio: use module_pci_driver to simplify the code
@ 2020-09-17  7:10 Liu Shixin
  2020-10-07  3:05 ` Martin K. Petersen
  2020-10-13 22:42 ` Martin K. Petersen
  0 siblings, 2 replies; 3+ messages in thread
From: Liu Shixin @ 2020-09-17  7:10 UTC (permalink / raw)
  To: James E.J. Bottomley, Martin K. Petersen
  Cc: linux-scsi, linux-kernel, Liu Shixin

Use the module_pci_driver() macro to make the code simpler
by eliminating module_init and module_exit calls.

Signed-off-by: Liu Shixin <liushixin2@huawei.com>
---
 drivers/scsi/initio.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c
index 1d39628ac947..ca16ef45d8dc 100644
--- a/drivers/scsi/initio.c
+++ b/drivers/scsi/initio.c
@@ -2962,20 +2962,8 @@ static struct pci_driver initio_pci_driver = {
 	.probe		= initio_probe_one,
 	.remove		= initio_remove_one,
 };
-
-static int __init initio_init_driver(void)
-{
-	return pci_register_driver(&initio_pci_driver);
-}
-
-static void __exit initio_exit_driver(void)
-{
-	pci_unregister_driver(&initio_pci_driver);
-}
+module_pci_driver(initio_pci_driver);
 
 MODULE_DESCRIPTION("Initio INI-9X00U/UW SCSI device driver");
 MODULE_AUTHOR("Initio Corporation");
 MODULE_LICENSE("GPL");
-
-module_init(initio_init_driver);
-module_exit(initio_exit_driver);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH -next] scsi: initio: use module_pci_driver to simplify the code
  2020-09-17  7:10 [PATCH -next] scsi: initio: use module_pci_driver to simplify the code Liu Shixin
@ 2020-10-07  3:05 ` Martin K. Petersen
  2020-10-13 22:42 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2020-10-07  3:05 UTC (permalink / raw)
  To: Liu Shixin
  Cc: James E.J. Bottomley, Martin K. Petersen, linux-scsi, linux-kernel


Liu,

> Use the module_pci_driver() macro to make the code simpler by
> eliminating module_init and module_exit calls.

Applied to 5.10/scsi-staging, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH -next] scsi: initio: use module_pci_driver to simplify the code
  2020-09-17  7:10 [PATCH -next] scsi: initio: use module_pci_driver to simplify the code Liu Shixin
  2020-10-07  3:05 ` Martin K. Petersen
@ 2020-10-13 22:42 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2020-10-13 22:42 UTC (permalink / raw)
  To: James E.J. Bottomley, Liu Shixin
  Cc: Martin K . Petersen, linux-kernel, linux-scsi

On Thu, 17 Sep 2020 15:10:45 +0800, Liu Shixin wrote:

> Use the module_pci_driver() macro to make the code simpler
> by eliminating module_init and module_exit calls.

Applied to 5.10/scsi-queue, thanks!

[1/1] scsi: initio: Use module_pci_driver() to simplify the code
      https://git.kernel.org/mkp/scsi/c/ca57b069954a

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-13 22:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-17  7:10 [PATCH -next] scsi: initio: use module_pci_driver to simplify the code Liu Shixin
2020-10-07  3:05 ` Martin K. Petersen
2020-10-13 22:42 ` Martin K. Petersen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.