1*52e6676eSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 2*52e6676eSThomas Gleixner // Copyright (C) 2016 Broadcom 34533d5f7SChris Brand 44533d5f7SChris Brand #include <linux/of_platform.h> 54533d5f7SChris Brand 64533d5f7SChris Brand #include <asm/mach/arch.h> 74533d5f7SChris Brand 84533d5f7SChris Brand static const char * const bcm23550_dt_compat[] = { 94533d5f7SChris Brand "brcm,bcm23550", 104533d5f7SChris Brand NULL, 114533d5f7SChris Brand }; 124533d5f7SChris Brand 134533d5f7SChris Brand DT_MACHINE_START(BCM23550_DT, "BCM23550 Broadcom Application Processor") 144533d5f7SChris Brand .dt_compat = bcm23550_dt_compat, 154533d5f7SChris Brand MACHINE_END 16