parisc: lasi: Initialize LASI driver via arch_initcall()
authorHelge Deller <deller@gmx.de>
Sun, 27 Aug 2023 09:03:20 +0000 (11:03 +0200)
committerHelge Deller <deller@gmx.de>
Sun, 27 Aug 2023 09:09:10 +0000 (11:09 +0200)
Move initialization code for LASI out of the GSC driver.
Since ASP and WAX have been moved in previous commits,
the GSC driver is now just a driver which provides library
functions for LASI, ASP and WAX and as such doesn't need
an own initialization function any longer.

Signed-off-by: Helge Deller <deller@gmx.de>
drivers/parisc/gsc.c
drivers/parisc/lasi.c

index 5643c46..a0daaa5 100644 (file)
@@ -258,14 +258,3 @@ int gsc_common_setup(struct parisc_device *parent, struct gsc_asic *gsc_asic)
 
        return 0;
 }
-
-extern struct parisc_driver lasi_driver;
-
-static int __init gsc_init(void)
-{
-#ifdef CONFIG_GSC_LASI
-       register_parisc_driver(&lasi_driver);
-#endif
-       return 0;
-}
-arch_initcall(gsc_init);
index d733182..73c93e9 100644 (file)
@@ -220,9 +220,16 @@ static struct parisc_device_id lasi_tbl[] __initdata = {
        { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00081 },
        { 0, }
 };
+MODULE_DEVICE_TABLE(parisc, lasi_tbl);
 
-struct parisc_driver lasi_driver __refdata = {
+static struct parisc_driver lasi_driver __refdata = {
        .name =         "lasi",
        .id_table =     lasi_tbl,
        .probe =        lasi_init_chip,
 };
+
+static int __init lasi_init(void)
+{
+       return register_parisc_driver(&lasi_driver);
+}
+arch_initcall(lasi_init);