Message ID | 023601cf69d5$d2f7f610$78e7e230$%han@samsung.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Am Mittwoch, 7. Mai 2014, 18:22:10 schrieb Jingoo Han: > Make of_device_id array const, because all OF functions > handle it as const. > > Signed-off-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Heiko Stuebner <heiko@sntech.de> > --- > drivers/input/touchscreen/auo-pixcir-ts.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/input/touchscreen/auo-pixcir-ts.c > b/drivers/input/touchscreen/auo-pixcir-ts.c index d3f9f6b..7f3c947 100644 > --- a/drivers/input/touchscreen/auo-pixcir-ts.c > +++ b/drivers/input/touchscreen/auo-pixcir-ts.c > @@ -679,7 +679,7 @@ static const struct i2c_device_id auo_pixcir_idtable[] = > { MODULE_DEVICE_TABLE(i2c, auo_pixcir_idtable); > > #ifdef CONFIG_OF > -static struct of_device_id auo_pixcir_ts_dt_idtable[] = { > +static const struct of_device_id auo_pixcir_ts_dt_idtable[] = { > { .compatible = "auo,auo_pixcir_ts" }, > {}, > }; -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/input/touchscreen/auo-pixcir-ts.c b/drivers/input/touchscreen/auo-pixcir-ts.c index d3f9f6b..7f3c947 100644 --- a/drivers/input/touchscreen/auo-pixcir-ts.c +++ b/drivers/input/touchscreen/auo-pixcir-ts.c @@ -679,7 +679,7 @@ static const struct i2c_device_id auo_pixcir_idtable[] = { MODULE_DEVICE_TABLE(i2c, auo_pixcir_idtable); #ifdef CONFIG_OF -static struct of_device_id auo_pixcir_ts_dt_idtable[] = { +static const struct of_device_id auo_pixcir_ts_dt_idtable[] = { { .compatible = "auo,auo_pixcir_ts" }, {}, };
Make of_device_id array const, because all OF functions handle it as const. Signed-off-by: Jingoo Han <jg1.han@samsung.com> --- drivers/input/touchscreen/auo-pixcir-ts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)