android_kernel_motorola_sm6225/arch/arm/mach-qcom/board-msm8937.c
Jingbiao Lu 20526d285d ARM: qcom: Add board config support for msm8937
Add board config support for msm8937.

Change-Id: I236a3deaf5a60b61a3d27161ab3966088214dc31
Signed-off-by: Jingbiao Lu <jingbiao@codeaurora.org>
Signed-off-by: Swetha Chikkaboraiah <schikk@codeaurora.org>
2021-02-25 07:33:30 -08:00

25 lines
543 B
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2018, 2021, The Linux Foundation. All rights reserved.
*/
#include <linux/kernel.h>
#include "board-dt.h"
#include <asm/mach/map.h>
#include <asm/mach/arch.h>
static const char *msm8937_dt_match[] __initconst = {
"qcom,msm8937",
NULL
};
static void __init msm8937_init(void)
{
board_dt_populate(NULL);
}
DT_MACHINE_START(MSM8937_DT,
"Qualcomm Technologies, Inc. MSM8937 (Flattened Device Tree)")
.init_machine = msm8937_init,
.dt_compat = msm8937_dt_match,
MACHINE_END