summaryrefslogtreecommitdiffstats
path: root/include/linux/i2c.h
diff options
context:
space:
mode:
authorDavid Brownell2006-09-03 22:37:11 +0200
committerGreg Kroah-Hartman2006-09-27 00:38:52 +0200
commitaf71ff690b92894f66ccede27f731150dc10d80d (patch)
treefb9080f5648a8fc7e51c0861e7deb7b7bc8bb3d9 /include/linux/i2c.h
parenti2c-isa: Restore driver owner (diff)
downloadkernel-qcow2-linux-af71ff690b92894f66ccede27f731150dc10d80d.tar.gz
kernel-qcow2-linux-af71ff690b92894f66ccede27f731150dc10d80d.tar.xz
kernel-qcow2-linux-af71ff690b92894f66ccede27f731150dc10d80d.zip
i2c: Let drivers constify i2c_algorithm data
i2c: Let drivers constify i2c_algorithm data Let drivers constify I2C algorithm method operations tables, moving them from ".data" to ".rodata". Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/i2c.h')
-rw-r--r--include/linux/i2c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h
index eb0628a7ecc6..23ad1ee42a4c 100644
--- a/include/linux/i2c.h
+++ b/include/linux/i2c.h
@@ -220,7 +220,7 @@ struct i2c_adapter {
struct module *owner;
unsigned int id;
unsigned int class;
- struct i2c_algorithm *algo;/* the algorithm to access the bus */
+ const struct i2c_algorithm *algo; /* the algorithm to access the bus */
void *algo_data;
/* --- administration stuff. */