diff --git a/profiles/input/hog_device.c b/profiles/input/hog_device.c
index 1b7616f..4f5e99b 100644
--- a/profiles/input/hog_device.c
+++ b/profiles/input/hog_device.c
.device_remove = hog_device_remove,
};
-static int hog_manager_init(void)
+static int hog_init(void)
{
int err;
return btd_profile_register(&hog_profile);
}
-static void hog_manager_exit(void)
+static void hog_exit(void)
{
if (suspend_supported)
suspend_exit();
btd_profile_unregister(&hog_profile);
}
-static int hog_init(void)
-{
- return hog_manager_init();
-}
-
-static void hog_exit(void)
-{
- hog_manager_exit();
-}
-
BLUETOOTH_PLUGIN_DEFINE(hog, VERSION, BLUETOOTH_PLUGIN_PRIORITY_DEFAULT,
hog_init, hog_exit)