Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72478a0c authored by Milo Kim's avatar Milo Kim Committed by Tony Lindgren
Browse files

mfd: tps65217: Fix mismatched interrupt number

Enum value of 'tps65217_irq_type' is not matched with DT parsed hwirq
number[*].

The MFD driver gets the IRQ data by referencing hwirq, but the value is
different. So, irq_to_tps65217_irq() returns mismatched IRQ data.
Eventually, the power button driver enables not PB but USB interrupt
when it is probed.

According to the TPS65217 register map[**], USB interrupt is the LSB.
This patch defines synchronized IRQ value.

[*]  include/dt-bindings/mfd/tps65217.h
[**] http://www.ti.com/lit/ds/symlink/tps65217.pdf



Signed-off-by: default avatarMilo Kim <woogyom.kim@gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 1001354c
Loading
Loading
Loading
Loading
+5 −6
Original line number Original line Diff line number Diff line
@@ -234,12 +234,11 @@ struct tps65217_bl_pdata {
	int dft_brightness;
	int dft_brightness;
};
};


enum tps65217_irq_type {
/* Interrupt numbers */
	TPS65217_IRQ_PB,
#define TPS65217_IRQ_USB		0
	TPS65217_IRQ_AC,
#define TPS65217_IRQ_AC			1
	TPS65217_IRQ_USB,
#define TPS65217_IRQ_PB			2
	TPS65217_NUM_IRQ
#define TPS65217_NUM_IRQ		3
};


/**
/**
 * struct tps65217_board - packages regulator init data
 * struct tps65217_board - packages regulator init data