util/sconfig: Remove unused ioapic and irq keywords
[coreboot.git] / src / cpu / power9 / power9.c
blobfd33ff219bbae36b143ced9de188a7a34daa0ee2
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <cpu/cpu.h>
4 #include <device/device.h>
6 static void power9_cpu_init(struct device *dev)
10 static struct device_operations cpu_dev_ops = {
11 .init = power9_cpu_init,
14 static const struct cpu_driver driver __cpu_driver = {
15 .ops = &cpu_dev_ops,
18 struct chip_operations cpu_power8_qemu_ops = {
19 CHIP_NAME("POWER9 CPU")