diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-19 16:04:12 +0530 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2017-08-29 22:26:08 +0200 |
commit | 329430ccfc9ff864315974cf2fe7a35b00be5e9f (patch) | |
tree | 368e5a0b4154bb2bb0bfbd78ac5b57f4b378def5 /drivers/i2c/busses/i2c-ocores.c | |
parent | ad3caf8abc385b974d863b7a7a2950f4b089fee8 (diff) | |
download | linux-329430ccfc9ff864315974cf2fe7a35b00be5e9f.tar.gz linux-329430ccfc9ff864315974cf2fe7a35b00be5e9f.tar.bz2 linux-329430ccfc9ff864315974cf2fe7a35b00be5e9f.zip |
i2c: busses: make i2c_adapter const
Make these const as they are only used in a copy operation.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: David Daney <david.daney@cavium.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-ocores.c')
-rw-r--r-- | drivers/i2c/busses/i2c-ocores.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-ocores.c b/drivers/i2c/busses/i2c-ocores.c index 34f1889a4073..8c42ca7107b2 100644 --- a/drivers/i2c/busses/i2c-ocores.c +++ b/drivers/i2c/busses/i2c-ocores.c @@ -276,7 +276,7 @@ static const struct i2c_algorithm ocores_algorithm = { .functionality = ocores_func, }; -static struct i2c_adapter ocores_adapter = { +static const struct i2c_adapter ocores_adapter = { .owner = THIS_MODULE, .name = "i2c-ocores", .class = I2C_CLASS_DEPRECATED, |