mb/google/brya/var/orisa: Update Type C DisplayPort HPD Configuration
[coreboot2.git] / src / cpu / qemu-x86 / qemu.c
blob289854a8f203a061a3bf5fbc1a0f237e7bebd09f
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <cpu/cpu.h>
4 #include <device/device.h>
6 static void qemu_cpu_init(struct device *dev)
10 static struct device_operations cpu_dev_ops = {
11 .init = qemu_cpu_init,
14 static const struct cpu_device_id cpu_table[] = {
15 { X86_VENDOR_ANY, 0, 0 },
16 CPU_TABLE_END
19 static const struct cpu_driver driver __cpu_driver = {
20 .ops = &cpu_dev_ops,
21 .id_table = cpu_table,
24 struct chip_operations cpu_qemu_x86_ops = {
25 .name = "QEMU x86 CPU",