mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
ece3fe93e8
The WPCM450 is an older BMC SoC in the Nuvoton NPCM family, originally marketed as Winbond WPCM450. Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-by: Joel Stanley <joel@jms.id.au> Link: https://lore.kernel.org/r/20210406120921.2484986-6-j.neuschaefer@gmx.net Signed-off-by: Joel Stanley <joel@jms.id.au>
14 lines
271 B
C
14 lines
271 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright 2021 Jonathan Neuschäfer
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
static const char *const wpcm450_dt_match[] = {
|
|
"nuvoton,wpcm450",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(WPCM450_DT, "WPCM450 chip")
|
|
.dt_compat = wpcm450_dt_match,
|
|
MACHINE_END
|