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

Commit 40a71272 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "clockevents: Add NULL definition for tick_broadcast on UP"

parents a0fc4c2d 2e36c317
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_SMP)	+= platsmp.o
obj-$(CONFIG_USE_OF) 	+= board-dt.o
obj-$(CONFIG_ARCH_SDXLEMUR) += board-sdxlemur.o
+25 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2020, 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 *sdxlemur_dt_match[] __initconst = {
	"qcom,sdxlemur",
	NULL
};

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

DT_MACHINE_START(SDXLEMUR_DT,
	"Qualcomm Technologies, Inc. SDXLEMUR (Flattened Device Tree)")
	.init_machine		= sdxlemur_init,
	.dt_compat		= sdxlemur_dt_match,
MACHINE_END
+1 −0
Original line number Diff line number Diff line
@@ -651,6 +651,7 @@ static const struct soc_id soc_id[] = {
	{ 415, "LAHAINA" },
	{ 450, "SHIMA" },
	{ 454, "HOLI" },
	{ 458, "SDXLEMUR" },
};

static struct qcom_socinfo *qsocinfo;
+1 −1
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ extern void clockevents_suspend(void);
extern void clockevents_resume(void);

# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
#  ifdef CONFIG_ARCH_HAS_TICK_BROADCAST
#  if defined(CONFIG_ARCH_HAS_TICK_BROADCAST) && defined(CONFIG_SMP)
extern void tick_broadcast(const struct cpumask *mask);
#  else
#   define tick_broadcast	NULL