3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 02:05:54 +00:00
Brooklyn/arch/arm/mach-bcm/board_bcm23550.c

16 lines
332 B
C
Raw Normal View History

2022-09-13 23:14:27 +05:00
// SPDX-License-Identifier: GPL-2.0-only
// Copyright (C) 2016 Broadcom
2022-04-02 18:06:56 +05:00
#include <linux/of_platform.h>
#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