Commit 5df29bca authored by Julia Lawall's avatar Julia Lawall Committed by Takashi Iwai

ALSA: i2c: constify snd_i2c_ops structures

The snd_i2c_ops structures are never modified, so declare them as const.

Done with the help of Coccinelle.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent b17154cf
...@@ -66,7 +66,7 @@ struct snd_i2c_bus { ...@@ -66,7 +66,7 @@ struct snd_i2c_bus {
struct snd_i2c_bit_ops *bit; struct snd_i2c_bit_ops *bit;
void *ops; void *ops;
} hw_ops; /* lowlevel operations */ } hw_ops; /* lowlevel operations */
struct snd_i2c_ops *ops; /* midlevel operations */ const struct snd_i2c_ops *ops; /* midlevel operations */
unsigned long private_value; unsigned long private_value;
void *private_data; void *private_data;
......
...@@ -39,7 +39,7 @@ static int snd_i2c_bit_readbytes(struct snd_i2c_device *device, ...@@ -39,7 +39,7 @@ static int snd_i2c_bit_readbytes(struct snd_i2c_device *device,
static int snd_i2c_bit_probeaddr(struct snd_i2c_bus *bus, static int snd_i2c_bit_probeaddr(struct snd_i2c_bus *bus,
unsigned short addr); unsigned short addr);
static struct snd_i2c_ops snd_i2c_bit_ops = { static const struct snd_i2c_ops snd_i2c_bit_ops = {
.sendbytes = snd_i2c_bit_sendbytes, .sendbytes = snd_i2c_bit_sendbytes,
.readbytes = snd_i2c_bit_readbytes, .readbytes = snd_i2c_bit_readbytes,
.probeaddr = snd_i2c_bit_probeaddr, .probeaddr = snd_i2c_bit_probeaddr,
......
...@@ -174,7 +174,7 @@ static int ap_cs8427_probeaddr(struct snd_i2c_bus *bus, unsigned short addr) ...@@ -174,7 +174,7 @@ static int ap_cs8427_probeaddr(struct snd_i2c_bus *bus, unsigned short addr)
return -ENOENT; return -ENOENT;
} }
static struct snd_i2c_ops ap_cs8427_i2c_ops = { static const struct snd_i2c_ops ap_cs8427_i2c_ops = {
.sendbytes = ap_cs8427_sendbytes, .sendbytes = ap_cs8427_sendbytes,
.readbytes = ap_cs8427_readbytes, .readbytes = ap_cs8427_readbytes,
.probeaddr = ap_cs8427_probeaddr, .probeaddr = ap_cs8427_probeaddr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment