Commit 91bc9e19 authored by Nigel Christian's avatar Nigel Christian Committed by Sebastian Reichel
Browse files

power: supply: pm2301_charger: remove unnecessary variable



The variable "ret" is initialized to zero and then returned.
Remove it and return zero.

Signed-off-by: default avatarNigel Christian <nigel.l.christian@gmail.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent df12470c
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -455,7 +455,6 @@ static int pm2_int_reg4(void *pm2_data, int val)
static int pm2_int_reg5(void *pm2_data, int val)
{
	struct pm2xxx_charger *pm2 = pm2_data;
	int ret = 0;

	if (val & (PM2XXX_INT6_ITVPWR2DROP | PM2XXX_INT6_ITVPWR1DROP)) {
		dev_dbg(pm2->dev, "VMPWR drop to VBAT level\n");
@@ -468,7 +467,7 @@ static int pm2_int_reg5(void *pm2_data, int val)
		dev_dbg(pm2->dev, "Falling/Rising edge on WPWR1/2\n");
	}

	return ret;
	return 0;
}

static irqreturn_t  pm2xxx_irq_int(int irq, void *data)