Use PLATFORM_DEVID_NONE define instead of "-1" value because:
 - it brings some meaning,
 - it might point attention why auto device ID was not used.

Signed-off-by: Krzysztof Kozlowski <k...@kernel.org>
---
 drivers/mfd/tps65910.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/tps65910.c b/drivers/mfd/tps65910.c
index 11959021b50a..d332072ee9de 100644
--- a/drivers/mfd/tps65910.c
+++ b/drivers/mfd/tps65910.c
@@ -502,7 +502,7 @@ static int tps65910_i2c_probe(struct i2c_client *i2c,
                pm_power_off = tps65910_power_off;
        }
 
-       ret = devm_mfd_add_devices(tps65910->dev, -1,
+       ret = devm_mfd_add_devices(tps65910->dev, PLATFORM_DEVID_NONE,
                                   tps65910s, ARRAY_SIZE(tps65910s),
                                   NULL, 0,
                                   regmap_irq_get_domain(tps65910->irq_data));
-- 
2.17.1

Reply via email to