m1n1/src/pcie.h
Hector Martin bd8ae6f4f6 pcie: Add a pcie_shutdown() function and call it on hv init
Guests don't like it if PCIe is initialized already

Signed-off-by: Hector Martin <marcan@marcan.st>
2021-05-28 00:03:11 +09:00

9 lines
121 B
C

/* SPDX-License-Identifier: MIT */
#ifndef PCIE_H
#define PCIE_H
int pcie_init(void);
int pcie_shutdown(void);
#endif