diff options
Diffstat (limited to 'drivers/mfd/max8998.c')
| -rw-r--r-- | drivers/mfd/max8998.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mfd/max8998.c b/drivers/mfd/max8998.c index 6ef56d28c05..d7218cc9094 100644 --- a/drivers/mfd/max8998.c +++ b/drivers/mfd/max8998.c @@ -161,13 +161,13 @@ static int max8998_i2c_probe(struct i2c_client *i2c,  	switch (id->driver_data) {  	case TYPE_LP3974:  		ret = mfd_add_devices(max8998->dev, -1, -				lp3974_devs, ARRAY_SIZE(lp3974_devs), -				NULL, 0); +				      lp3974_devs, ARRAY_SIZE(lp3974_devs), +				      NULL, 0, NULL);  		break;  	case TYPE_MAX8998:  		ret = mfd_add_devices(max8998->dev, -1, -				max8998_devs, ARRAY_SIZE(max8998_devs), -				NULL, 0); +				      max8998_devs, ARRAY_SIZE(max8998_devs), +				      NULL, 0, NULL);  		break;  	default:  		ret = -EINVAL;  |