summaryrefslogtreecommitdiffstats
path: root/hcid/dbus-hci.c
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2007-01-30 14:09:49 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2007-01-30 14:09:49 +0000
commit885f18159e513ed1df4088918ea86b05555810e3 (patch)
tree3d2a99eba6b00c9bd07993efe6d73103cd8f943a /hcid/dbus-hci.c
parent7c8be626e77b6138df3c18b1407a6eb038305573 (diff)
Make sure the device mode is only stored through a SetMode call
Diffstat (limited to 'hcid/dbus-hci.c')
-rw-r--r--hcid/dbus-hci.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/hcid/dbus-hci.c b/hcid/dbus-hci.c
index c521d569..49da2140 100644
--- a/hcid/dbus-hci.c
+++ b/hcid/dbus-hci.c
@@ -311,7 +311,6 @@ static const DBusObjectPathVTable adapter_vtable = {
static void adapter_mode_changed(struct adapter *adapter, uint8_t mode)
{
- bdaddr_t local;
DBusMessage *message;
const char *scan_mode;
@@ -341,10 +340,6 @@ static void adapter_mode_changed(struct adapter *adapter, uint8_t mode)
return;
}
- str2ba(adapter->address, &local);
-
- write_device_mode(&local, scan_mode);
-
message = dev_signal_factory(adapter->dev_id, "ModeChanged",
DBUS_TYPE_STRING, &scan_mode,
DBUS_TYPE_INVALID);