diff mbox

[2/5] i2c: pxa: Make of_device_id array const

Message ID 022201cf69d2$5fcc0ad0$1f642070$%han@samsung.com
State Superseded
Headers show

Commit Message

Jingoo Han May 7, 2014, 8:57 a.m. UTC
Make of_device_id array const, because all OF functions
handle it as const.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
---
 drivers/i2c/busses/i2c-pxa.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Haojian Zhuang July 9, 2014, 11:52 p.m. UTC | #1
On Wed, May 7, 2014 at 4:57 PM, Jingoo Han <jg1.han@samsung.com> wrote:
> Make of_device_id array const, because all OF functions
> handle it as const.
>
> Signed-off-by: Jingoo Han <jg1.han@samsung.com>
> ---
>  drivers/i2c/busses/i2c-pxa.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
> index bbe6dfb..be671f7 100644
> --- a/drivers/i2c/busses/i2c-pxa.c
> +++ b/drivers/i2c/busses/i2c-pxa.c
> @@ -1084,7 +1084,7 @@ static const struct i2c_algorithm i2c_pxa_pio_algorithm = {
>         .functionality  = i2c_pxa_functionality,
>  };
>
> -static struct of_device_id i2c_pxa_dt_ids[] = {
> +static const struct of_device_id i2c_pxa_dt_ids[] = {
>         { .compatible = "mrvl,pxa-i2c", .data = (void *)REGS_PXA2XX },
>         { .compatible = "mrvl,pwri2c", .data = (void *)REGS_PXA3XX },
>         { .compatible = "mrvl,mmp-twsi", .data = (void *)REGS_PXA2XX },
> --
> 1.7.10.4
>
>

Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
index bbe6dfb..be671f7 100644
--- a/drivers/i2c/busses/i2c-pxa.c
+++ b/drivers/i2c/busses/i2c-pxa.c
@@ -1084,7 +1084,7 @@  static const struct i2c_algorithm i2c_pxa_pio_algorithm = {
 	.functionality	= i2c_pxa_functionality,
 };
 
-static struct of_device_id i2c_pxa_dt_ids[] = {
+static const struct of_device_id i2c_pxa_dt_ids[] = {
 	{ .compatible = "mrvl,pxa-i2c", .data = (void *)REGS_PXA2XX },
 	{ .compatible = "mrvl,pwri2c", .data = (void *)REGS_PXA3XX },
 	{ .compatible = "mrvl,mmp-twsi", .data = (void *)REGS_PXA2XX },