regulator: tps80031: Trivial cleanups
authorAxel Lin <axel.lin@ingics.com>
Thu, 22 Nov 2012 08:30:44 +0000 (16:30 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 23 Nov 2012 12:12:57 +0000 (21:12 +0900)
This patch includes below cleanups:

- Fix typo in comment
- Fix showing wrong register in dev_err
- Remove unnecessary rinfo variable
- Add TPS80032 to MODULE_DESCRIPTION

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/tps80031-regulator.c

index a37ede80abbf13ab9e879e2c4b86c0f02c76c343..aaab3d73d7bd89fbafd066ba2215c688edd316ef 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * tps80031-regulator.c -- TI TPS80031 regulator driver.
  *
- * Regulator driver for TITPS80031/TPS80032 Fully Integrated Power
+ * Regulator driver for TI TPS80031/TPS80032 Fully Integrated Power
  * Management with Power Path and Battery Charger.
  *
  * Copyright (c) 2012, NVIDIA Corporation.
@@ -311,7 +311,7 @@ static int tps80031_vbus_is_enabled(struct regulator_dev *rdev)
                                TPS80031_CHARGERUSB_CTRL3, &ctrl3);
        if (ret < 0) {
                dev_err(ri->dev, "reg 0x%02x read failed, e = %d\n",
-                       TPS80031_CHARGERUSB_CTRL1, ret);
+                       TPS80031_CHARGERUSB_CTRL3, ret);
                return ret;
        }
        if ((ctrl1 & OPA_MODE_EN) && (ctrl3 & BOOST_HW_PWR_EN))
@@ -679,7 +679,6 @@ static int __devinit tps80031_regulator_probe(struct platform_device *pdev)
 {
        struct tps80031_platform_data *pdata;
        struct tps80031_regulator_platform_data *tps_pdata;
-       struct tps80031_regulator_info *rinfo;
        struct tps80031_regulator *ri;
        struct tps80031_regulator *pmic;
        struct regulator_dev *rdev;
@@ -703,9 +702,8 @@ static int __devinit tps80031_regulator_probe(struct platform_device *pdev)
 
        for (num = 0; num < TPS80031_REGULATOR_MAX; ++num) {
                tps_pdata = pdata->regulator_pdata[num];
-               rinfo = &tps80031_rinfo[num];
                ri = &pmic[num];
-               ri->rinfo = rinfo;
+               ri->rinfo = &tps80031_rinfo[num];
                ri->dev = &pdev->dev;
 
                check_smps_mode_mult(pdev->dev.parent, ri);
@@ -788,6 +786,6 @@ static void __exit tps80031_regulator_exit(void)
 module_exit(tps80031_regulator_exit);
 
 MODULE_ALIAS("platform:tps80031-regulator");
-MODULE_DESCRIPTION("Regulator Driver for TI TPS80031 PMIC");
+MODULE_DESCRIPTION("Regulator Driver for TI TPS80031/TPS80032 PMIC");
 MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
 MODULE_LICENSE("GPL v2");