aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorMika Westerberg <mika.westerberg@linux.intel.com>2012-04-16 04:48:40 -0400
committerAnton Vorontsov <anton.vorontsov@linaro.org>2012-05-05 08:35:47 -0400
commitd72bade76d11da661d76aec5801567d573f39fea (patch)
tree674cc60de51bb548dbb590fdc7b4d911822d83b9 /drivers/power
parent055d7f0f29b2af6ec8fd5da9f0ce27b9e9e63436 (diff)
smb347-charger: Move IRQ enabling to the end of probe
There is a potential problem if we call smb347_irq_enable() from smb347_irq_init() because smb347_irq_enable() makes the device registers read-only once it returns and smb347_irq_init() expects them to still be read-write. Currently no harm happens because it is the last call we make in smb347_irq_init(). Anyway a better place for enabling IRQs is at the end of probe function and this is also symmetric to call smb347_irq_disable() which is done at the beginning of remove function. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/smb347-charger.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/power/smb347-charger.c b/drivers/power/smb347-charger.c
index 18d53748e66d..de6898f5d166 100644
--- a/drivers/power/smb347-charger.c
+++ b/drivers/power/smb347-charger.c
@@ -925,10 +925,6 @@ static int smb347_irq_init(struct smb347_charger *smb)
925 if (ret < 0) 925 if (ret < 0)
926 goto fail_readonly; 926 goto fail_readonly;
927 927
928 ret = smb347_irq_enable(smb);
929 if (ret < 0)
930 goto fail_readonly;
931
932 smb347_set_writable(smb, false); 928 smb347_set_writable(smb, false);
933 smb->client->irq = irq; 929 smb->client->irq = irq;
934 return 0; 930 return 0;
@@ -1241,6 +1237,8 @@ static int smb347_probe(struct i2c_client *client,
1241 if (ret < 0) { 1237 if (ret < 0) {
1242 dev_warn(dev, "failed to initialize IRQ: %d\n", ret); 1238 dev_warn(dev, "failed to initialize IRQ: %d\n", ret);
1243 dev_warn(dev, "disabling IRQ support\n"); 1239 dev_warn(dev, "disabling IRQ support\n");
1240 } else {
1241 smb347_irq_enable(smb);
1244 } 1242 }
1245 } 1243 }
1246 1244