RE: [PATCH 1/7] drm: adv7511: Add struct adv7511_chip_info and use i2c_get_match_data()

2023-08-29 Thread Biju Das
Hi Laurent Pinchart, Thanks for the feedback. > Subject: Re: [PATCH 1/7] drm: adv7511: Add struct adv7511_chip_info and use > i2c_get_match_data() > > Hi Biju, > > Thank you for the patch. > > On Sun, Aug 13, 2023 at 07:05:06PM +0100, Biju Das wrote: > > Add stru

Re: [PATCH 1/7] drm: adv7511: Add struct adv7511_chip_info and use i2c_get_match_data()

2023-08-29 Thread Laurent Pinchart
Hi Biju, Thank you for the patch. On Sun, Aug 13, 2023 at 07:05:06PM +0100, Biju Das wrote: > Add struct adv7511_chip_info to handle hw differences between various > chips rather checking against the 'type' variable in various places. > Replace 'adv->type'->'info->type' by moving variable 'type'

Re: [PATCH 1/7] drm: adv7511: Add struct adv7511_chip_info and use i2c_get_match_data()

2023-08-18 Thread Adam Ford
On Sun, Aug 13, 2023 at 1:05 PM Biju Das wrote: > > Add struct adv7511_chip_info to handle hw differences between various > chips rather checking against the 'type' variable in various places. > Replace 'adv->type'->'info->type' by moving variable 'type' from > struct adv7511 to struct

[PATCH 1/7] drm: adv7511: Add struct adv7511_chip_info and use i2c_get_match_data()

2023-08-13 Thread Biju Das
Add struct adv7511_chip_info to handle hw differences between various chips rather checking against the 'type' variable in various places. Replace 'adv->type'->'info->type' by moving variable 'type' from struct adv7511 to struct adv7511_chip_info. Replace of_device_get_match_data() and ID lookup