diff --git a/hid-pidff-wrapper.c b/hid-pidff-wrapper.c index 2bcf936..20bfdf7 100644 --- a/hid-pidff-wrapper.c +++ b/hid-pidff-wrapper.c @@ -69,7 +69,7 @@ static int universal_pidff_probe(struct hid_device *hdev, goto err; } - ret = hid_pidff_init(hdev, id); + ret = hid_pidff_init_quirks(hdev, id); if (ret) { hid_warn(hdev, "Force feedback is not supported\n"); goto err; diff --git a/hid-pidff.c b/hid-pidff.c index fc0c7af..5bb858f 100644 --- a/hid-pidff.c +++ b/hid-pidff.c @@ -1322,7 +1322,7 @@ static int pidff_check_autocenter(struct pidff_device *pidff, /* * Check if the device is PID and initialize it, with quirks */ -int hid_pidff_init(struct hid_device *hid, const struct hid_device_id *id) +int hid_pidff_init_quirks(struct hid_device *hid, const struct hid_device_id *id) { struct pidff_device *pidff; struct hid_input *hidinput = list_entry(hid->inputs.next, diff --git a/hid-pidff.h b/hid-pidff.h index b4104b8..5009cc9 100644 --- a/hid-pidff.h +++ b/hid-pidff.h @@ -20,6 +20,6 @@ #define PIDFF_QUIRK_NO_DELAY_EFFECT BIT(2) -int hid_pidff_init(struct hid_device *hid, const struct hid_device_id *id); +int hid_pidff_init_quirks(struct hid_device *hid, const struct hid_device_id *id); #endif