]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
dm: pmic: max77686: Correct two typos in a comment
authorSimon Glass <sjg@chromium.org>
Sun, 9 Aug 2015 15:10:57 +0000 (09:10 -0600)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 06:17:43 +0000 (08:17 +0200)
These were pointed out in review but I missed them.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/power/regulator/max77686.c

index 9d23c19122120efc3915dd9c6b78e2b465c10072..71678b60d3efdb064e2ed0ff52e0b61c8e6ef209 100644 (file)
@@ -87,8 +87,8 @@ static int max77686_buck_volt2hex(int buck, int uV)
                 * hex = (uV - 750000) / 50000. We assume that dynamic voltage
                 * scaling via GPIOs is not enabled and don't support that.
                 * If this is enabled then the driver will need to take that
-                * into account anrd check different registers depending on
-                * the current setting See the datasheet for details.
+                * into account and check different registers depending on
+                * the current setting. See the datasheet for details.
                 */
                hex = (uV - MAX77686_BUCK_UV_HMIN) / MAX77686_BUCK_UV_HSTEP;
                hex_max = MAX77686_BUCK_VOLT_MAX_HEX;