blob: d32d3aef7a78af2c2b369788aba92a43a1e6cc69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/device.h>
#include <soc/southbridge.h>
#include <soc/acpi.h>
static void soc_init(void *chip_info)
{
default_dev_ops_root.write_acpi_tables = soc_acpi_write_tables;
}
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,
};
|