From 321b4afa541196cab0ce22ec9c0f00a467a71d6f Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 10 Dec 2008 21:54:12 +0100 Subject: Convert two more users to g_timeout_add_seconds() --- audio/a2dp.c | 3 ++- serial/port.c | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/audio/a2dp.c b/audio/a2dp.c index af0cfe4d..454a8426 100644 --- a/audio/a2dp.c +++ b/audio/a2dp.c @@ -799,7 +799,8 @@ static void close_cfm(struct avdtp *session, struct avdtp_local_sep *sep, } if (setup->reconfigure) - g_timeout_add(RECONFIGURE_TIMEOUT, a2dp_reconfigure, setup); + g_timeout_add_seconds(RECONFIGURE_TIMEOUT, + a2dp_reconfigure, setup); } static gboolean abort_ind(struct avdtp *session, struct avdtp_local_sep *sep, diff --git a/serial/port.c b/serial/port.c index 9b58f212..51250aa5 100644 --- a/serial/port.c +++ b/serial/port.c @@ -249,8 +249,9 @@ static void open_notify(int fd, int err, struct serial_port *port) g_dbus_send_message(device->conn, reply); } -static gboolean open_continue(struct serial_port *port) +static gboolean open_continue(gpointer user_data) { + struct serial_port *port = user_data; int fd; static int ntries = MAX_OPEN_TRIES; @@ -282,7 +283,7 @@ static int port_open(struct serial_port *port) fd = open(port->dev, O_RDONLY | O_NOCTTY); if (fd < 0) { - g_timeout_add(OPEN_WAIT, (GSourceFunc) open_continue, port); + g_timeout_add_seconds(OPEN_WAIT, open_continue, port); return -EINPROGRESS; } -- cgit