aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorVenu Byravarasu <vbyravarasu@nvidia.com>2012-09-17 11:00:47 +0530
committerSamuel Ortiz <sameo@linux.intel.com>2012-09-19 12:44:47 +0200
commit99de1cc5a77122e59640668b202280ecdb0f3c2e (patch)
treee1d9873b1f2d05ecaf9aae15aeeb9eadd526623f /drivers/mfd
parentmfd: 88pm860x: Move initilization code (diff)
downloadlinux-dev-99de1cc5a77122e59640668b202280ecdb0f3c2e.tar.xz
linux-dev-99de1cc5a77122e59640668b202280ecdb0f3c2e.zip
mfd: tps65090: Remove redundant check
Remove redundant check in is_volatile_reg(). Signed-off-by: Venu Byravarasu <vbyravarasu@nvidia.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/tps65090.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tps65090.c b/drivers/mfd/tps65090.c
index 50fd87c87a1c..074ae32b0d2a 100644
--- a/drivers/mfd/tps65090.c
+++ b/drivers/mfd/tps65090.c
@@ -236,7 +236,7 @@ static int __devinit tps65090_irq_init(struct tps65090 *tps65090, int irq,
static bool is_volatile_reg(struct device *dev, unsigned int reg)
{
- if ((reg == TPS65090_INT_STS) || (reg == TPS65090_INT_STS))
+ if (reg == TPS65090_INT_STS)
return true;
else
return false;