diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-01-20 18:53:56 -0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-01-23 12:00:17 +0000 |
commit | f2694383680838573262f3099f03dc4722d5efa4 (patch) | |
tree | 0e4bc4f119ccf8b8db3541162522b6c8b46562c8 | |
parent | 7e22e91102c6b9df7c4ae2168910e19d2bb14cd6 (diff) | |
download | op-kernel-dev-f2694383680838573262f3099f03dc4722d5efa4.zip op-kernel-dev-f2694383680838573262f3099f03dc4722d5efa4.tar.gz |
regulator: pfuze100-regulator: Improve dev_info() message
'lay' is not very meaningful, so use it 'layer' instead to let the dev_info()
clearer.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | drivers/regulator/pfuze100-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c index 8b5e4c7..c31e048 100644 --- a/drivers/regulator/pfuze100-regulator.c +++ b/drivers/regulator/pfuze100-regulator.c @@ -323,7 +323,7 @@ static int pfuze_identify(struct pfuze_chip *pfuze_chip) if (ret) return ret; dev_info(pfuze_chip->dev, - "Full lay: %x, Metal lay: %x\n", + "Full layer: %x, Metal layer: %x\n", (value & 0xf0) >> 4, value & 0x0f); ret = regmap_read(pfuze_chip->regmap, PFUZE100_FABID, &value); |