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

Commit d3b78dd4 authored by Avaneesh Kumar Dwivedi's avatar Avaneesh Kumar Dwivedi Committed by Gerrit - the friendly Code Review server
Browse files

ARM: msm: Add board config support for qcs403



This change add dt board support for 32 bit kernel
for qcs403.

Change-Id: Ib580f8a1cd3dd55404b0dd37d781f557e3ece408
Signed-off-by: default avatarAvaneesh Kumar Dwivedi <akdwived@codeaurora.org>
parent 7a0f735e
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -30,3 +30,19 @@ DT_MACHINE_START(QCS405_DT,
	.init_machine		= qcs405_init,
	.dt_compat		= qcs405_dt_match,
MACHINE_END

static const char *qcs403_dt_match[] __initconst = {
	"qcom,qcs403",
	NULL
};

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

DT_MACHINE_START(QCS403_DT,
	"Qualcomm Technologies, Inc. QCS403 (Flattened Device Tree)")
	.init_machine           = qcs403_init,
	.dt_compat              = qcs403_dt_match,
MACHINE_END