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>

authored by Tobias Klauser and committed by Jean Delvare 0b2c3688 9ddabb67

+1 -1
+1 -1
drivers/i2c/i2c-core.c
··· 248 248 NULL 249 249 }; 250 250 251 - const static struct dev_pm_ops i2c_device_pm_ops = { 251 + static const struct dev_pm_ops i2c_device_pm_ops = { 252 252 .suspend = i2c_device_pm_suspend, 253 253 .resume = i2c_device_pm_resume, 254 254 };