M7350/kernel/arch/arm/mach-bcm/brcmstb.c

29 lines
817 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
2024-09-09 08:57:42 +00:00
* Copyright (C) 2013-2014 Broadcom Corporation
2024-09-09 08:52:07 +00:00
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation version 2.
*
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
* kind, whether express or implied; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
2024-09-09 08:57:42 +00:00
#include <linux/init.h>
#include <linux/of_platform.h>
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
static const char *brcmstb_match[] __initconst = {
"brcm,bcm7445",
"brcm,brcmstb",
NULL
};
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
DT_MACHINE_START(BRCMSTB, "Broadcom STB (Flattened Device Tree)")
.dt_compat = brcmstb_match,
MACHINE_END