aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/genoa/chip.c
blob: 46f43d1f4828d2518a7e9e17a65a27b65dfe9388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>

static void soc_init(void *chip_info)
{
}

static void soc_final(void *chip_info)
{
}

struct chip_operations soc_amd_genoa_ops = {
	CHIP_NAME("AMD Genoa SoC")
	.init = soc_init,
	.final = soc_final,
};