xref: /kernel/linux/linux-6.6/arch/arm/mach-hpe/gxp.c (revision 62306a36)
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (C) 2022 Hewlett-Packard Enterprise Development Company, L.P. */
3
4#include <asm/mach/arch.h>
5
6static const char * const gxp_board_dt_compat[] = {
7	"hpe,gxp",
8	NULL,
9};
10
11DT_MACHINE_START(GXP_DT, "HPE GXP")
12	.dt_compat	= gxp_board_dt_compat,
13	.l2c_aux_val = 0,
14	.l2c_aux_mask = ~0,
15MACHINE_END
16