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

Commit 251b4cb7 authored by Pavankumar Kondeti's avatar Pavankumar Kondeti
Browse files

board: 8226: add aux data for hsic device



User space scripts use "msm_hsic_host" device name to unbind
the driver when no device is attached to the hsic during boot up.
It is working since the HSIC driver changes the device name to
"msm_hsic_host" in probe().  Changing the device name after
the platform device registration leads to memory corruption.
Instead use AUXDATA to solve this problem.

CRs-Fixed: 568103
Change-Id: If080adc238b97964b5499450cd410cf125ff5c18
Signed-off-by: default avatarPavankumar Kondeti <pkondeti@codeaurora.org>
parent e3c81f14
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -81,6 +81,8 @@ static struct of_dev_auxdata msm8226_auxdata_lookup[] __initdata = {
			"msm_sdcc.2", NULL),
	OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF9864900, \
			"msm_sdcc.3", NULL),
	OF_DEV_AUXDATA("qcom,hsic-host", 0xF9A00000, "msm_hsic_host", NULL),

	{}
};