summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlok Barsode <alok.barsode@azingo.com>2009-04-21 17:05:11 +0530
committerMarcel Holtmann <marcel@holtmann.org>2009-04-21 13:25:35 +0100
commite050cc3d1458116cad6f4182c81ba7d31949857c (patch)
treebe8374bbcce810141e0eb59fe6c0c165448d9a70 /plugins
parent2f28c39a63e19e41598af8088c5677859364bc04 (diff)
downloadbluez-e050cc3d1458116cad6f4182c81ba7d31949857c.tar.gz
Using # operator to stringify plugin name.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/echo.c2
-rw-r--r--plugins/hal.c2
-rw-r--r--plugins/netlink.c2
-rw-r--r--plugins/service.c2
-rw-r--r--plugins/storage.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/plugins/echo.c b/plugins/echo.c
index 4443ff198..716742e9e 100644
--- a/plugins/echo.c
+++ b/plugins/echo.c
@@ -163,5 +163,5 @@ static void echo_exit(void)
btd_unregister_adapter_driver(&echo_server);
}
-BLUETOOTH_PLUGIN_DEFINE("echo", VERSION,
+BLUETOOTH_PLUGIN_DEFINE(echo, VERSION,
BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, echo_init, echo_exit)
diff --git a/plugins/hal.c b/plugins/hal.c
index 683777cd6..65f70598c 100644
--- a/plugins/hal.c
+++ b/plugins/hal.c
@@ -158,5 +158,5 @@ static void hal_exit(void)
btd_unregister_adapter_driver(&hal_driver);
}
-BLUETOOTH_PLUGIN_DEFINE("hal", VERSION,
+BLUETOOTH_PLUGIN_DEFINE(hal, VERSION,
BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, hal_init, hal_exit)
diff --git a/plugins/netlink.c b/plugins/netlink.c
index d1e91b213..88ab5e8fd 100644
--- a/plugins/netlink.c
+++ b/plugins/netlink.c
@@ -123,5 +123,5 @@ static void netlink_exit(void)
nl_handle_destroy(handle);
}
-BLUETOOTH_PLUGIN_DEFINE("netlink", VERSION,
+BLUETOOTH_PLUGIN_DEFINE(netlink, VERSION,
BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, netlink_init, netlink_exit)
diff --git a/plugins/service.c b/plugins/service.c
index d81abe86f..27264bba9 100644
--- a/plugins/service.c
+++ b/plugins/service.c
@@ -859,5 +859,5 @@ static void service_exit(void)
dbus_connection_unref(connection);
}
-BLUETOOTH_PLUGIN_DEFINE("service", VERSION,
+BLUETOOTH_PLUGIN_DEFINE(service, VERSION,
BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, service_init, service_exit)
diff --git a/plugins/storage.c b/plugins/storage.c
index 0abc616a2..0649e0655 100644
--- a/plugins/storage.c
+++ b/plugins/storage.c
@@ -39,5 +39,5 @@ static void storage_exit(void)
{
}
-BLUETOOTH_PLUGIN_DEFINE("storage", VERSION,
+BLUETOOTH_PLUGIN_DEFINE(storage, VERSION,
BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, storage_init, storage_exit)