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

Commit 3ad984c7 authored by Maulik Shah's avatar Maulik Shah
Browse files

drivers: pinctrl: qcom: Correct the base address for sm8150



The direct connect registers base need to keep differently for
sm8150 since it used per tile registers in devicetree.

pinctrl driver does tile plus hmss base address for configuring
direct connect interrupts. Update the tile address to correctly
point to direct connect registers.

Change-Id: Ic959ed067be30dd457449e874298be30b696cd07
Signed-off-by: default avatarMaulik Shah <mkshah@codeaurora.org>
parent f1a388a8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -22,10 +22,10 @@ enum {
	WEST
};

#define HMSS_WEST	0x031BB000
#define HMSS_EAST	0x035B7000
#define HMSS_NORTH	0x039BC000
#define HMSS_SOUTH	0x03DBE000
#define HMSS_WEST	0x000BB000
#define HMSS_EAST	0x000B7000
#define HMSS_NORTH	0x000BC000
#define HMSS_SOUTH	0x000BE000

#define FUNCTION(fname)					\
	[msm_mux_##fname] = {				\