2017-08-19 19:08:11

by Arvind Yadav

[permalink] [raw]
Subject: [PATCH 0/4] constify rtc i2c_device_id

i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.

Arvind Yadav (4):
[PATCH 1/4] rtc: ds1672: constify i2c_device_id
[PATCH 2/4] rtc: em3027: constify i2c_device_id
[PATCH 3/4] rtc: max6900: constify i2c_device_id
[PATCH 4/4] rtc: rv3029c2: constify i2c_device_id

drivers/rtc/rtc-ds1672.c | 2 +-
drivers/rtc/rtc-em3027.c | 2 +-
drivers/rtc/rtc-max6900.c | 2 +-
drivers/rtc/rtc-rv3029c2.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)

--
2.7.4


2017-08-19 19:08:15

by Arvind Yadav

[permalink] [raw]
Subject: [PATCH 1/4] rtc: ds1672: constify i2c_device_id

i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <[email protected]>
---
drivers/rtc/rtc-ds1672.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-ds1672.c b/drivers/rtc/rtc-ds1672.c
index 7bf46bf..9caaccc 100644
--- a/drivers/rtc/rtc-ds1672.c
+++ b/drivers/rtc/rtc-ds1672.c
@@ -190,7 +190,7 @@ static int ds1672_probe(struct i2c_client *client,
return 0;
}

-static struct i2c_device_id ds1672_id[] = {
+static const struct i2c_device_id ds1672_id[] = {
{ "ds1672", 0 },
{ }
};
--
2.7.4

2017-08-19 19:08:24

by Arvind Yadav

[permalink] [raw]
Subject: [PATCH 4/4] rtc: rv3029c2: constify i2c_device_id

i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <[email protected]>
---
drivers/rtc/rtc-rv3029c2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-rv3029c2.c b/drivers/rtc/rtc-rv3029c2.c
index 85fa1da..aa09771 100644
--- a/drivers/rtc/rtc-rv3029c2.c
+++ b/drivers/rtc/rtc-rv3029c2.c
@@ -868,7 +868,7 @@ static int rv3029_i2c_probe(struct i2c_client *client,
return rv3029_probe(&client->dev, regmap, client->irq, client->name);
}

-static struct i2c_device_id rv3029_id[] = {
+static const struct i2c_device_id rv3029_id[] = {
{ "rv3029", 0 },
{ "rv3029c2", 0 },
{ }
--
2.7.4

2017-08-19 19:08:22

by Arvind Yadav

[permalink] [raw]
Subject: [PATCH 3/4] rtc: max6900: constify i2c_device_id

i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <[email protected]>
---
drivers/rtc/rtc-max6900.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-max6900.c b/drivers/rtc/rtc-max6900.c
index 48b6b41..cbdc86a 100644
--- a/drivers/rtc/rtc-max6900.c
+++ b/drivers/rtc/rtc-max6900.c
@@ -226,7 +226,7 @@ max6900_probe(struct i2c_client *client, const struct i2c_device_id *id)
return 0;
}

-static struct i2c_device_id max6900_id[] = {
+static const struct i2c_device_id max6900_id[] = {
{ "max6900", 0 },
{ }
};
--
2.7.4

2017-08-19 19:08:55

by Arvind Yadav

[permalink] [raw]
Subject: [PATCH 2/4] rtc: em3027: constify i2c_device_id

i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <[email protected]>
---
drivers/rtc/rtc-em3027.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-em3027.c b/drivers/rtc/rtc-em3027.c
index 4f4930a..b0ef8cf 100644
--- a/drivers/rtc/rtc-em3027.c
+++ b/drivers/rtc/rtc-em3027.c
@@ -132,7 +132,7 @@ static int em3027_probe(struct i2c_client *client,
return 0;
}

-static struct i2c_device_id em3027_id[] = {
+static const struct i2c_device_id em3027_id[] = {
{ "em3027", 0 },
{ }
};
--
2.7.4

2017-08-24 09:02:08

by Alexandre Belloni

[permalink] [raw]
Subject: Re: [PATCH 0/4] constify rtc i2c_device_id

On 20/08/2017 at 00:37:54 +0530, Arvind Yadav wrote:
> i2c_device_id are not supposed to change at runtime. All functions
> working with i2c_device_id provided by <linux/i2c.h> work with
> const i2c_device_id. So mark the non-const structs as const.
>
> Arvind Yadav (4):
> [PATCH 1/4] rtc: ds1672: constify i2c_device_id
> [PATCH 2/4] rtc: em3027: constify i2c_device_id
> [PATCH 3/4] rtc: max6900: constify i2c_device_id
> [PATCH 4/4] rtc: rv3029c2: constify i2c_device_id
>
> drivers/rtc/rtc-ds1672.c | 2 +-
> drivers/rtc/rtc-em3027.c | 2 +-
> drivers/rtc/rtc-max6900.c | 2 +-
> drivers/rtc/rtc-rv3029c2.c | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>

All applied.

> --
> 2.7.4
>

--
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com