summaryrefslogtreecommitdiff
path: root/plugins/g1.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-09-02 19:59:19 -0700
committerMarcel Holtmann <marcel@holtmann.org>2009-09-02 19:59:19 -0700
commitfac1349090cfc6aa395d02abe661fdb0f6e76e81 (patch)
tree8aa9d3147b61b8ffd70b4493dbcde270ef93055d /plugins/g1.c
parent9b3a8183f32a01e66a2cdbb887f89604379076b1 (diff)
downloadofono-fac1349090cfc6aa395d02abe661fdb0f6e76e81.tar.gz
Some minor coding style cleanups for G1 plugin
Diffstat (limited to 'plugins/g1.c')
-rw-r--r--plugins/g1.c15
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)