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

Commit 536965eb authored by Neeraj Upadhyay's avatar Neeraj Upadhyay Committed by Gerrit - the friendly Code Review server
Browse files

ARM: qcom: add board entries for msmtriton



Add board entries to support msmtriton 32-bit boot.

Change-Id: Idfc139ff63f6268f836694e0680c1e44582dfbb3
Signed-off-by: default avatarNeeraj Upadhyay <neeraju@codeaurora.org>
parent bcd8ec92
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -31,3 +31,20 @@ DT_MACHINE_START(MSMFALCON_DT,
	.init_machine = msmfalcon_init,
	.dt_compat = msmfalcon_dt_match,
MACHINE_END

static const char *msmtriton_dt_match[] __initconst = {
	"qcom,msmtriton",
	"qcom,apqtriton",
	NULL
};

static void __init msmtriton_init(void)
{
	board_dt_populate(NULL);
}

DT_MACHINE_START(MSMTRITON_DT,
	"Qualcomm Technologies, Inc. MSM TRITON (Flattened Device Tree)")
	.init_machine = msmtriton_init,
	.dt_compat = msmtriton_dt_match,
MACHINE_END