All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fsi: fsi-scom: Use module_fsi_driver to simplify the code
@ 2021-06-11  7:52 dingsenjie
  0 siblings, 0 replies; only message in thread
From: dingsenjie @ 2021-06-11  7:52 UTC (permalink / raw)
  To: jk, joel, alistair, eajames; +Cc: linux-fsi, linux-kernel, dingsenjie

From: dingsenjie <dingsenjie@yulong.com>

Simplify the code by using module_fsi_driver macro.

Signed-off-by: dingsenjie <dingsenjie@yulong.com>
---
 drivers/fsi/fsi-scom.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/drivers/fsi/fsi-scom.c b/drivers/fsi/fsi-scom.c
index b45bfab..91bb413 100644
--- a/drivers/fsi/fsi-scom.c
+++ b/drivers/fsi/fsi-scom.c
@@ -645,16 +645,5 @@ static int scom_remove(struct device *dev)
 	}
 };
 
-static int scom_init(void)
-{
-	return fsi_driver_register(&scom_drv);
-}
-
-static void scom_exit(void)
-{
-	fsi_driver_unregister(&scom_drv);
-}
-
-module_init(scom_init);
-module_exit(scom_exit);
+module_fsi_driver(scom_drv);
 MODULE_LICENSE("GPL");
-- 
1.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-06-11  7:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-11  7:52 [PATCH] fsi: fsi-scom: Use module_fsi_driver to simplify the code dingsenjie

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.