mfd: stmpe-i2c: Move .driver structure fields inside {} in stmpe_i2c_driver

Currently, few fields in stmpe_i2c_driver are initialized as:
.driver.owner = THIS_MODULE,

Group them under {}, like:
.driver = {
	.owner = THIS_MODULE,
	...
},

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Viresh Kumar 2012-11-23 00:26:19 +05:30 committed by Samuel Ortiz
parent b20a43715e
commit 3253398385

View File

@ -82,11 +82,13 @@ static const struct i2c_device_id stmpe_i2c_id[] = {
MODULE_DEVICE_TABLE(i2c, stmpe_id); MODULE_DEVICE_TABLE(i2c, stmpe_id);
static struct i2c_driver stmpe_i2c_driver = { static struct i2c_driver stmpe_i2c_driver = {
.driver.name = "stmpe-i2c", .driver = {
.driver.owner = THIS_MODULE, .name = "stmpe-i2c",
.owner = THIS_MODULE,
#ifdef CONFIG_PM #ifdef CONFIG_PM
.driver.pm = &stmpe_dev_pm_ops, .pm = &stmpe_dev_pm_ops,
#endif #endif
},
.probe = stmpe_i2c_probe, .probe = stmpe_i2c_probe,
.remove = __devexit_p(stmpe_i2c_remove), .remove = __devexit_p(stmpe_i2c_remove),
.id_table = stmpe_i2c_id, .id_table = stmpe_i2c_id,