mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-29 17:22:07 +00:00
91b631c25f
Several includes are not needed, so drop them. of_platform.h is not needed, but it implicitly includes of.h which is needed. Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230717225704.3215469-1-robh@kernel.org Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
14 lines
300 B
C
14 lines
300 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
// Copyright (C) 2016 Broadcom
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
static const char * const bcm23550_dt_compat[] = {
|
|
"brcm,bcm23550",
|
|
NULL,
|
|
};
|
|
|
|
DT_MACHINE_START(BCM23550_DT, "BCM23550 Broadcom Application Processor")
|
|
.dt_compat = bcm23550_dt_compat,
|
|
MACHINE_END
|