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

Commit ed0240cb authored by Joonwoo Park's avatar Joonwoo Park Committed by Matt Wagantall
Browse files

pinctrl: msm: increase variable size for register addresses



Newer MSM SoCs have TLMM hardware block upper than 16 bit.  Increase to
32 bit registers to hold addresses correctly.

Signed-off-by: default avatarJoonwoo Park <joonwoop@codeaurora.org>
parent 5aee050a
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -70,11 +70,11 @@ struct msm_pingroup {
	unsigned *funcs;
	unsigned nfuncs;

	s16 ctl_reg;
	s16 io_reg;
	s16 intr_cfg_reg;
	s16 intr_status_reg;
	s16 intr_target_reg;
	u32 ctl_reg;
	u32 io_reg;
	u32 intr_cfg_reg;
	u32 intr_status_reg;
	u32 intr_target_reg;

	unsigned mux_bit:5;