[PATCH 19/25] of: add const to struct *of_device_id.data

2012-07-23 Thread Uwe Kleine-König
Drivers should never need to modify the data of a device id. So it can be const which in turn allows more consts in the driver. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- include/linux/mod_devicetable.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH 19/25] of: add const to struct *of_device_id.data

2012-07-23 Thread Greg Kroah-Hartman
On Mon, Jul 23, 2012 at 11:13:24AM +0200, Uwe Kleine-König wrote: Drivers should never need to modify the data of a device id. So it can be const which in turn allows more consts in the driver. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Acked-by: Greg Kroah-Hartman