diff --git a/profiles/input/hog.c b/profiles/input/hog.c
index 00ec151..186f6b1 100644
--- a/profiles/input/hog.c
+++ b/profiles/input/hog.c
return 0;
}
-static int hog_device_set_control_point(struct hog_device *hogdev,
- gboolean suspend)
+static int set_control_point(struct hog_device *hogdev, gboolean suspend)
{
uint8_t value = suspend ? 0x00 : 0x01;
struct hog_device *hogdev = data;
gboolean suspend = GPOINTER_TO_INT(user_data);
- hog_device_set_control_point(hogdev, suspend);
+ set_control_point(hogdev, suspend);
}
static void suspend_callback(void)