diff --git a/profiles/proximity/manager.c b/profiles/proximity/manager.c
index 8b991a8..58e5193 100644
--- a/profiles/proximity/manager.c
+++ b/profiles/proximity/manager.c
return g_strcmp0(prim->uuid, uuid);
}
-static int attio_device_probe(struct btd_profile *p, struct btd_device *device,
- GSList *uuids)
+static int monitor_device_probe(struct btd_profile *p,
+ struct btd_device *device, GSList *uuids)
{
struct gatt_primary *linkloss, *txpower, *immediate;
GSList *l, *primaries;
return monitor_register(device, linkloss, txpower, immediate, &enabled);
}
-static void attio_device_remove(struct btd_profile *p,
+static void monitor_device_remove(struct btd_profile *p,
struct btd_device *device)
{
monitor_unregister(device);
.name = "Proximity Monitor GATT Driver",
.remote_uuids = BTD_UUIDS(IMMEDIATE_ALERT_UUID,
LINK_LOSS_UUID, TX_POWER_UUID),
- .device_probe = attio_device_probe,
- .device_remove = attio_device_remove,
+ .device_probe = monitor_device_probe,
+ .device_remove = monitor_device_remove,
};
static struct btd_profile pxp_reporter_profile = {