mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
fcd346e833
of_platform.h is not needed, so drop it. Acked-by: Nick Hawkins <nick.hawkins@hpe.com> Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230803-dt-header-cleanups-for-soc-v2-6-d8de2cc88bff@kernel.org Signed-off-by: Arnd Bergmann <arnd@arndb.de>
15 lines
341 B
C
15 lines
341 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright (C) 2022 Hewlett-Packard Enterprise Development Company, L.P. */
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
static const char * const gxp_board_dt_compat[] = {
|
|
"hpe,gxp",
|
|
NULL,
|
|
};
|
|
|
|
DT_MACHINE_START(GXP_DT, "HPE GXP")
|
|
.dt_compat = gxp_board_dt_compat,
|
|
.l2c_aux_val = 0,
|
|
.l2c_aux_mask = ~0,
|
|
MACHINE_END
|