From 4b0ab7e43f4fa555641902b07f2f7ab3821f2b75 Mon Sep 17 00:00:00 2001 From: Alok Barsode Date: Mon, 21 Jul 2008 14:53:56 +0530 Subject: Adding sdp_record list as parameter to probe. Signed-off-by: Alok Barsode --- audio/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'audio') diff --git a/audio/main.c b/audio/main.c index 2ea2a1a3..8e4c8055 100644 --- a/audio/main.c +++ b/audio/main.c @@ -43,7 +43,7 @@ static DBusConnection *conn; -static int headset_probe(struct btd_device *device) +static int headset_probe(struct btd_device *device, GSList *records) { const gchar *path = device_get_path(device); DBG("path %s", path); @@ -64,7 +64,7 @@ static struct btd_device_driver headset_driver = { .remove = headset_remove, }; -static int a2dp_probe(struct btd_device *device) +static int a2dp_probe(struct btd_device *device, GSList *records) { const gchar *path = device_get_path(device); DBG("path %s", path); @@ -85,7 +85,7 @@ static struct btd_device_driver a2dp_driver = { .remove = a2dp_remove, }; -static int audio_probe(struct btd_device *device) +static int audio_probe(struct btd_device *device, GSList *records) { const gchar *path = device_get_path(device); DBG("path %s", path); -- cgit