Re: [PATCH 0/2] power: supply: Constify static struct attribute_group

2021-01-13 Thread Sebastian Reichel
Hi, On Wed, Jan 13, 2021 at 09:32:41PM +0100, Rikard Falkeborn wrote: > Constify two static struct attribute_group. The only place they are > used is to put their address in an array of pointers to const struct > attribute_group. With these patches applied, all static attribute_group > structs in

[PATCH 0/2] power: supply: Constify static struct attribute_group

2021-01-13 Thread Rikard Falkeborn
Constify two static struct attribute_group. The only place they are used is to put their address in an array of pointers to const struct attribute_group. With these patches applied, all static attribute_group structs in drivers/power are const. Rikard Falkeborn (2): power: supply: ltc4162-l: Con