mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 14:34:28 +08:00
6861d27cf5
Split-up generic and platform dependent code in order to be able to re-use generic event handling code in pvpanic PCI device driver in the next patches. The code from pvpanic.c was split in two new files: - pvpanic.c: generic code that handles pvpanic events - pvpanic-mmio.c: platform/bus dependent code Signed-off-by: Mihai Carabas <mihai.carabas@oracle.com> Link: https://lore.kernel.org/r/1616597356-20696-2-git-send-email-mihai.carabas@oracle.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
517 B
Plaintext
20 lines
517 B
Plaintext
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Pvpanic Kconfig
|
|
#
|
|
# Copyright (C) 2021 Oracle.
|
|
#
|
|
|
|
config PVPANIC
|
|
bool "pvpanic device support"
|
|
help
|
|
This option allows to select a specific pvpanic device driver.
|
|
pvpanic is a paravirtualized device provided by QEMU; it lets
|
|
a virtual machine (guest) communicate panic events to the host.
|
|
|
|
config PVPANIC_MMIO
|
|
tristate "pvpanic MMIO device support"
|
|
depends on HAS_IOMEM && (ACPI || OF) && PVPANIC
|
|
help
|
|
This driver provides support for the MMIO pvpanic device.
|