Re: [PATCH 06/12] power: supply: account for const type of of_device_id.data

2018-01-09 Thread Sebastian Reichel
Hi, On Tue, Jan 02, 2018 at 02:28:02PM +0100, Julia Lawall wrote: > This driver creates two const structures that it stores in the data > field of an of_device_id array. > > The data field of an of_device_id structure has type const void *, so > there is no need for a const-discarding cast when

Re: [PATCH 06/12] power: supply: account for const type of of_device_id.data

2018-01-09 Thread Sebastian Reichel
Hi, On Tue, Jan 02, 2018 at 02:28:02PM +0100, Julia Lawall wrote: > This driver creates two const structures that it stores in the data > field of an of_device_id array. > > The data field of an of_device_id structure has type const void *, so > there is no need for a const-discarding cast when

[PATCH 06/12] power: supply: account for const type of of_device_id.data

2018-01-02 Thread Julia Lawall
This driver creates two const structures that it stores in the data field of an of_device_id array. The data field of an of_device_id structure has type const void *, so there is no need for a const-discarding cast when putting const values into such a structure. Furthermore, adding const to the

[PATCH 06/12] power: supply: account for const type of of_device_id.data

2018-01-02 Thread Julia Lawall
This driver creates two const structures that it stores in the data field of an of_device_id array. The data field of an of_device_id structure has type const void *, so there is no need for a const-discarding cast when putting const values into such a structure. Furthermore, adding const to the