diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-01-16 22:43:12 +0300 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2010-01-16 22:43:12 +0300 |
commit | 0b2c3688445ff02d3f1bfffc6983417b28f8c3da (patch) | |
tree | 6523c209131ec4da4b74c4ea8e3231efa4eeda95 /drivers/i2c | |
parent | 9ddabb6700f82a033a76bcf7a547204fa12aaa17 (diff) | |
download | linux-0b2c3688445ff02d3f1bfffc6983417b28f8c3da.tar.xz |
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>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/i2c-core.c | 2 |
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, }; |