android_kernel_motorola_sm6225/arch/arm/mach-qcom/board-sdm439.c
Jingbiao Lu 6aaa5e3131 ARM: qcom: add board config support for sdm439 and sdm429
Add board config support for sdm439 and sdm429.

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

25 lines
536 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 *sdm439_dt_match[] __initconst = {
"qcom,sdm439",
NULL
};
static void __init sdm439_init(void)
{
board_dt_populate(NULL);
}
DT_MACHINE_START(SDM439_DT,
"Qualcomm Technologies, Inc. SDM439 (Flattened Device Tree)")
.init_machine = sdm439_init,
.dt_compat = sdm439_dt_match,
MACHINE_END