diff --git a/profiles/gatt/gas.c b/profiles/gatt/gas.c
index d189221..a828fcd 100644
--- a/profiles/gatt/gas.c
+++ b/profiles/gatt/gas.c
struct btd_device *device;
struct att_range gap; /* GAP Primary service range */
struct att_range gatt; /* GATT Primary service range */
- struct att_range changed; /* Affected handle range */
GAttrib *attrib;
guint attioid;
guint changed_ind;
olen = enc_confirmation(opdu, plen);
g_attrib_send(gas->attrib, 0, opdu[0], opdu, olen, NULL, NULL, NULL);
- if (gas->changed.start == start && gas->changed.end == end)
- return;
-
- gas->changed.start = start;
- gas->changed.end = end;
-
btd_device_gatt_set_service_changed(gas->device, start, end);
}