]> Git Repo - linux.git/blob - arch/arm/mach-hpe/gxp.c
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[linux.git] / arch / arm / mach-hpe / gxp.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2022 Hewlett-Packard Enterprise Development Company, L.P. */
3
4 #include <linux/of_platform.h>
5 #include <asm/mach/arch.h>
6
7 static const char * const gxp_board_dt_compat[] = {
8         "hpe,gxp",
9         NULL,
10 };
11
12 DT_MACHINE_START(GXP_DT, "HPE GXP")
13         .dt_compat      = gxp_board_dt_compat,
14         .l2c_aux_val = 0,
15         .l2c_aux_mask = ~0,
16 MACHINE_END
This page took 0.033123 seconds and 4 git commands to generate.