[PATCH v3 4/8] HID: i2c-hid-dmi-quirks: use named initializer for 'i2c_hid_elan_flipped_quirks[]'
"Pawel Zalewski (The Capable Hub)" <[email protected]>
| Newsgroups | org.kernel.vger.linux-input,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <20260727-mod-devicetable-hid_device_id-v3-4-980896ca283e@thegoodpenguin.co.uk> |
This makes the code a little bit more readable and consistent with other drivers in the HID subsystem that assign the 'driver_data' field in the 'hid_device_id' struct explicitly. It was confirmed that i2c-hid-dmi-quirks.o pre/post patch are equal using diffscope. Signed-off-by: Pawel Zalewski (The Capable Hub) <[email protected]> --- drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c b/drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c index 83b9bc4b02e6..c1f81154f6ab 100644 --- a/drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c +++ b/drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c @@ -419,7 +419,7 @@ static const struct dmi_system_id i2c_hid_dmi_desc_override_table[] = { static const struct hid_device_id i2c_hid_elan_flipped_quirks = { HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, USB_VENDOR_ID_ELAN, 0x2dcd), - HID_QUIRK_X_INVERT | HID_QUIRK_Y_INVERT + .driver_data = HID_QUIRK_X_INVERT | HID_QUIRK_Y_INVERT, }; /* -- 2.43.0