HID: hid-lg4ff: Remove "hid_" prefix from some functions' names
Remove "hid_" prefix from some functions' names. All internal functions of hid-lg4ff should be prefixed with just "lg4ff_" Signed-off-by: Michal Malý <madcatxster@devoid-pointer.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
2a552c30b2
commit
d0afd84893
@ -68,8 +68,8 @@
|
|||||||
#define LG4FF_FFEX_REV_MAJ 0x21
|
#define LG4FF_FFEX_REV_MAJ 0x21
|
||||||
#define LG4FF_FFEX_REV_MIN 0x00
|
#define LG4FF_FFEX_REV_MIN 0x00
|
||||||
|
|
||||||
static void hid_lg4ff_set_range_dfp(struct hid_device *hid, u16 range);
|
static void lg4ff_set_range_dfp(struct hid_device *hid, u16 range);
|
||||||
static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range);
|
static void lg4ff_set_range_g25(struct hid_device *hid, u16 range);
|
||||||
|
|
||||||
struct lg4ff_device_entry {
|
struct lg4ff_device_entry {
|
||||||
u32 product_id;
|
u32 product_id;
|
||||||
@ -134,10 +134,10 @@ struct lg4ff_alternate_mode {
|
|||||||
static const struct lg4ff_wheel lg4ff_devices[] = {
|
static const struct lg4ff_wheel lg4ff_devices[] = {
|
||||||
{USB_DEVICE_ID_LOGITECH_WHEEL, lg4ff_wheel_effects, 40, 270, NULL},
|
{USB_DEVICE_ID_LOGITECH_WHEEL, lg4ff_wheel_effects, 40, 270, NULL},
|
||||||
{USB_DEVICE_ID_LOGITECH_MOMO_WHEEL, lg4ff_wheel_effects, 40, 270, NULL},
|
{USB_DEVICE_ID_LOGITECH_MOMO_WHEEL, lg4ff_wheel_effects, 40, 270, NULL},
|
||||||
{USB_DEVICE_ID_LOGITECH_DFP_WHEEL, lg4ff_wheel_effects, 40, 900, hid_lg4ff_set_range_dfp},
|
{USB_DEVICE_ID_LOGITECH_DFP_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_dfp},
|
||||||
{USB_DEVICE_ID_LOGITECH_G25_WHEEL, lg4ff_wheel_effects, 40, 900, hid_lg4ff_set_range_g25},
|
{USB_DEVICE_ID_LOGITECH_G25_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
|
||||||
{USB_DEVICE_ID_LOGITECH_DFGT_WHEEL, lg4ff_wheel_effects, 40, 900, hid_lg4ff_set_range_g25},
|
{USB_DEVICE_ID_LOGITECH_DFGT_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
|
||||||
{USB_DEVICE_ID_LOGITECH_G27_WHEEL, lg4ff_wheel_effects, 40, 900, hid_lg4ff_set_range_g25},
|
{USB_DEVICE_ID_LOGITECH_G27_WHEEL, lg4ff_wheel_effects, 40, 900, lg4ff_set_range_g25},
|
||||||
{USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2, lg4ff_wheel_effects, 40, 270, NULL},
|
{USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2, lg4ff_wheel_effects, 40, 270, NULL},
|
||||||
{USB_DEVICE_ID_LOGITECH_WII_WHEEL, lg4ff_wheel_effects, 40, 270, NULL}
|
{USB_DEVICE_ID_LOGITECH_WII_WHEEL, lg4ff_wheel_effects, 40, 270, NULL}
|
||||||
};
|
};
|
||||||
@ -294,7 +294,7 @@ int lg4ff_adjust_input_event(struct hid_device *hid, struct hid_field *field,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hid_lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *effect)
|
static int lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *effect)
|
||||||
{
|
{
|
||||||
struct hid_device *hid = input_get_drvdata(dev);
|
struct hid_device *hid = input_get_drvdata(dev);
|
||||||
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
||||||
@ -339,7 +339,7 @@ static int hid_lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *e
|
|||||||
|
|
||||||
/* Sends default autocentering command compatible with
|
/* Sends default autocentering command compatible with
|
||||||
* all wheels except Formula Force EX */
|
* all wheels except Formula Force EX */
|
||||||
static void hid_lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitude)
|
static void lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitude)
|
||||||
{
|
{
|
||||||
struct hid_device *hid = input_get_drvdata(dev);
|
struct hid_device *hid = input_get_drvdata(dev);
|
||||||
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
||||||
@ -416,7 +416,7 @@ static void hid_lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitud
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Sends autocentering command compatible with Formula Force EX */
|
/* Sends autocentering command compatible with Formula Force EX */
|
||||||
static void hid_lg4ff_set_autocenter_ffex(struct input_dev *dev, u16 magnitude)
|
static void lg4ff_set_autocenter_ffex(struct input_dev *dev, u16 magnitude)
|
||||||
{
|
{
|
||||||
struct hid_device *hid = input_get_drvdata(dev);
|
struct hid_device *hid = input_get_drvdata(dev);
|
||||||
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
||||||
@ -436,7 +436,7 @@ static void hid_lg4ff_set_autocenter_ffex(struct input_dev *dev, u16 magnitude)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Sends command to set range compatible with G25/G27/Driving Force GT */
|
/* Sends command to set range compatible with G25/G27/Driving Force GT */
|
||||||
static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range)
|
static void lg4ff_set_range_g25(struct hid_device *hid, u16 range)
|
||||||
{
|
{
|
||||||
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
||||||
struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
|
struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
|
||||||
@ -456,7 +456,7 @@ static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Sends commands to set range compatible with Driving Force Pro wheel */
|
/* Sends commands to set range compatible with Driving Force Pro wheel */
|
||||||
static void hid_lg4ff_set_range_dfp(struct hid_device *hid, u16 range)
|
static void lg4ff_set_range_dfp(struct hid_device *hid, u16 range)
|
||||||
{
|
{
|
||||||
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
|
||||||
struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
|
struct hid_report *report = list_entry(report_list->next, struct hid_report, list);
|
||||||
@ -1043,7 +1043,7 @@ int lg4ff_init(struct hid_device *hid)
|
|||||||
for (j = 0; lg4ff_devices[i].ff_effects[j] >= 0; j++)
|
for (j = 0; lg4ff_devices[i].ff_effects[j] >= 0; j++)
|
||||||
set_bit(lg4ff_devices[i].ff_effects[j], dev->ffbit);
|
set_bit(lg4ff_devices[i].ff_effects[j], dev->ffbit);
|
||||||
|
|
||||||
error = input_ff_create_memless(dev, NULL, hid_lg4ff_play);
|
error = input_ff_create_memless(dev, NULL, lg4ff_play);
|
||||||
|
|
||||||
if (error)
|
if (error)
|
||||||
return error;
|
return error;
|
||||||
@ -1081,9 +1081,9 @@ int lg4ff_init(struct hid_device *hid)
|
|||||||
/* Formula Force EX expects different autocentering command */
|
/* Formula Force EX expects different autocentering command */
|
||||||
if ((bcdDevice >> 8) == LG4FF_FFEX_REV_MAJ &&
|
if ((bcdDevice >> 8) == LG4FF_FFEX_REV_MAJ &&
|
||||||
(bcdDevice & 0xff) == LG4FF_FFEX_REV_MIN)
|
(bcdDevice & 0xff) == LG4FF_FFEX_REV_MIN)
|
||||||
dev->ff->set_autocenter = hid_lg4ff_set_autocenter_ffex;
|
dev->ff->set_autocenter = lg4ff_set_autocenter_ffex;
|
||||||
else
|
else
|
||||||
dev->ff->set_autocenter = hid_lg4ff_set_autocenter_default;
|
dev->ff->set_autocenter = lg4ff_set_autocenter_default;
|
||||||
|
|
||||||
dev->ff->set_autocenter(dev, 0);
|
dev->ff->set_autocenter(dev, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user