mbox series

[for-5.18/uclogic,0/9] DIGImend patches, part II

Message ID 20220219100157.41920-1-jose.exposito89@gmail.com (mailing list archive)
Headers show
Series DIGImend patches, part II | expand

Message

José Expósito Feb. 19, 2022, 10:01 a.m. UTC
Hi everyone,

This series is a follow up to [1], kindly reviewed and applied
by Jiří in hid.git#for-5.18/uclogic.

It might look a little bit longer than desired, but most of the
patches are code simplification and refactoring in preparation
for the last patch which adds support for multiple frame input
devices.

Thank you very much in advance to maintainers for reviewing it,
José Expósito

[1] https://lore.kernel.org/linux-input/nycvar.YFH.7.76.2202161642180.11721@cbobk.fhfr.pm/T/

Nikolai Kondrashov (9):
  HID: uclogic: Remove pen usage masking
  HID: uclogic: Replace pen_frame_flag with subreport_list
  HID: uclogic: Switch to matching subreport bytes
  HID: uclogic: Specify total report size to buttonpad macro
  HID: uclogic: Use different constants for frame report IDs
  HID: uclogic: Use "frame" instead of "buttonpad"
  HID: uclogic: Put version first in rdesc namespace
  HID: uclogic: Define report IDs before their descriptors
  HID: uclogic: Support multiple frame input devices

 drivers/hid/hid-uclogic-core.c   |  79 +++++++------
 drivers/hid/hid-uclogic-params.c | 195 ++++++++++++++-----------------
 drivers/hid/hid-uclogic-params.h |  86 +++++++-------
 drivers/hid/hid-uclogic-rdesc.c  |  53 ++++-----
 drivers/hid/hid-uclogic-rdesc.h  |  38 +++---
 5 files changed, 221 insertions(+), 230 deletions(-)

Comments

Jiri Kosina March 1, 2022, 2:29 p.m. UTC | #1
On Sat, 19 Feb 2022, José Expósito wrote:

> Hi everyone,
> 
> This series is a follow up to [1], kindly reviewed and applied
> by Jiří in hid.git#for-5.18/uclogic.
> 
> It might look a little bit longer than desired, but most of the
> patches are code simplification and refactoring in preparation
> for the last patch which adds support for multiple frame input
> devices.
> 
> Thank you very much in advance to maintainers for reviewing it,
> José Expósito
> 
> [1] https://lore.kernel.org/linux-input/nycvar.YFH.7.76.2202161642180.11721@cbobk.fhfr.pm/T/
> 
> Nikolai Kondrashov (9):
>   HID: uclogic: Remove pen usage masking
>   HID: uclogic: Replace pen_frame_flag with subreport_list
>   HID: uclogic: Switch to matching subreport bytes
>   HID: uclogic: Specify total report size to buttonpad macro
>   HID: uclogic: Use different constants for frame report IDs
>   HID: uclogic: Use "frame" instead of "buttonpad"
>   HID: uclogic: Put version first in rdesc namespace
>   HID: uclogic: Define report IDs before their descriptors
>   HID: uclogic: Support multiple frame input devices
> 
>  drivers/hid/hid-uclogic-core.c   |  79 +++++++------
>  drivers/hid/hid-uclogic-params.c | 195 ++++++++++++++-----------------
>  drivers/hid/hid-uclogic-params.h |  86 +++++++-------
>  drivers/hid/hid-uclogic-rdesc.c  |  53 ++++-----
>  drivers/hid/hid-uclogic-rdesc.h  |  38 +++---
>  5 files changed, 221 insertions(+), 230 deletions(-)

Now queued in hid.git#for-5.18/uclogic.

Thanks,
Nikolai Kondrashov March 1, 2022, 2:32 p.m. UTC | #2
On 3/1/22 16:29, Jiri Kosina wrote:
> On Sat, 19 Feb 2022, José Expósito wrote:
> 
>> Hi everyone,
>>
>> This series is a follow up to [1], kindly reviewed and applied
>> by Jiří in hid.git#for-5.18/uclogic.
>>
>> It might look a little bit longer than desired, but most of the
>> patches are code simplification and refactoring in preparation
>> for the last patch which adds support for multiple frame input
>> devices.
>>
>> Thank you very much in advance to maintainers for reviewing it,
>> José Expósito
>>
>> [1] https://lore.kernel.org/linux-input/nycvar.YFH.7.76.2202161642180.11721@cbobk.fhfr.pm/T/
>>
>> Nikolai Kondrashov (9):
>>    HID: uclogic: Remove pen usage masking
>>    HID: uclogic: Replace pen_frame_flag with subreport_list
>>    HID: uclogic: Switch to matching subreport bytes
>>    HID: uclogic: Specify total report size to buttonpad macro
>>    HID: uclogic: Use different constants for frame report IDs
>>    HID: uclogic: Use "frame" instead of "buttonpad"
>>    HID: uclogic: Put version first in rdesc namespace
>>    HID: uclogic: Define report IDs before their descriptors
>>    HID: uclogic: Support multiple frame input devices
>>
>>   drivers/hid/hid-uclogic-core.c   |  79 +++++++------
>>   drivers/hid/hid-uclogic-params.c | 195 ++++++++++++++-----------------
>>   drivers/hid/hid-uclogic-params.h |  86 +++++++-------
>>   drivers/hid/hid-uclogic-rdesc.c  |  53 ++++-----
>>   drivers/hid/hid-uclogic-rdesc.h  |  38 +++---
>>   5 files changed, 221 insertions(+), 230 deletions(-)
> 
> Now queued in hid.git#for-5.18/uclogic.

Thank you for your work, José, and for your reviews Jiri!

Nick