aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2010-01-16 20:43:12 +0100
committerJean Delvare <khali@linux-fr.org>2010-01-16 20:43:12 +0100
commit0b2c3688445ff02d3f1bfffc6983417b28f8c3da (patch)
tree6523c209131ec4da4b74c4ea8e3231efa4eeda95
parentMerge branch 'for-linus/samsung' of git://git.fluff.org/bjdooks/linux (diff)
downloadlinux-dev-0b2c3688445ff02d3f1bfffc6983417b28f8c3da.tar.xz
linux-dev-0b2c3688445ff02d3f1bfffc6983417b28f8c3da.zip
i2c-core: Storage class should be before const qualifier
The C99 specification states in section 6.11.5: The placement of a storage-class specifier other than at the beginning of the declaration specifiers in a declaration is an obsolescent feature. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Jean Delvare <khali@linux-fr.org>
-rw-r--r--drivers/i2c/i2c-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index 0ac2f90ab840..d610e995bbfd 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -248,7 +248,7 @@ static const struct attribute_group *i2c_dev_attr_groups[] = {
NULL
};
-const static struct dev_pm_ops i2c_device_pm_ops = {
+static const struct dev_pm_ops i2c_device_pm_ops = {
.suspend = i2c_device_pm_suspend,
.resume = i2c_device_pm_resume,
};