Browse Source

regulator: change message level on probing lp872x driver

Use err log rather than warning message when the platform data is NULL

Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Kim, Milo 13 years ago
parent
commit
b222a817b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/regulator/lp872x.c

+ 1 - 1
drivers/regulator/lp872x.c

@@ -885,7 +885,7 @@ static int lp872x_probe(struct i2c_client *cl, const struct i2c_device_id *id)
 	};
 
 	if (!pdata) {
-		dev_warn(&cl->dev, "no platform data\n");
+		dev_err(&cl->dev, "no platform data\n");
 		return -EINVAL;
 	}