summaryrefslogtreecommitdiffstats
path: root/serial
diff options
context:
space:
mode:
authorAlok Barsode <alok.barsode@azingo.com>2008-07-21 19:46:42 +0530
committerLuiz Augusto von Dentz <luiz.dentz@indt.org.br>2008-07-28 10:47:58 -0300
commitb76fbc7d29f28a95a9ea25aae1f6f2d9c10adb19 (patch)
treec9fa8e8e8f8f0fe6b22980d7fcca9f102e9c3628 /serial
parent473e0415d60fd1c067d3a2741a13424b8b06bae1 (diff)
Adding {driver, priv} list to btd_device and adding
driver as parameter to probe and remove. Signed-off-by: Alok Barsode <alok.barsode@azingo.com>
Diffstat (limited to 'serial')
-rw-r--r--serial/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/serial/main.c b/serial/main.c
index 7a8d01f3..1d7cf228 100644
--- a/serial/main.c
+++ b/serial/main.c
@@ -97,7 +97,8 @@ static GDBusMethodTable serial_methods[] = {
static DBusConnection *conn;
-static int serial_probe(struct btd_device *device, GSList *records)
+static int serial_probe(struct btd_device_driver *driver,
+ struct btd_device *device, GSList *records)
{
const gchar *path = device_get_path(device);
DBG("path %s", path);
@@ -110,7 +111,8 @@ static int serial_probe(struct btd_device *device, GSList *records)
return 0;
}
-static void serial_remove(struct btd_device *device)
+static void serial_remove(struct btd_device_driver *driver,
+ struct btd_device *device)
{
const gchar *path = device_get_path(device);
DBG("path %s", path);