diff options
-rw-r--r-- | plugins/g1.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/plugins/g1.c b/plugins/g1.c index c0f35f35..6b7ff9fa 100644 --- a/plugins/g1.c +++ b/plugins/g1.c @@ -250,12 +250,12 @@ static void g1_populate(struct ofono_modem *modem) } static struct ofono_modem_driver g1_driver = { - .name = "g1", - .probe = g1_probe, - .remove = g1_remove, - .enable = g1_enable, - .disable = g1_disable, - .populate = g1_populate, + .name = "g1", + .probe = g1_probe, + .remove = g1_remove, + .enable = g1_enable, + .disable = g1_disable, + .populate = g1_populate, }; static int g1_init(void) @@ -269,5 +269,4 @@ static void g1_exit(void) } OFONO_PLUGIN_DEFINE(g1, "HTC G1 modem driver", VERSION, - OFONO_PLUGIN_PRIORITY_DEFAULT, - g1_init, g1_exit) + OFONO_PLUGIN_PRIORITY_DEFAULT, g1_init, g1_exit) |