bhyve: Mark pci_de_vinput as static.

Originally in main this was fixed in commit 37045dfa89.  However,
when that commit was merged to stable/13 in commit 976ed044fb,
pci_virtio_input was not yet merged to stable/13.  This is a direct
commit to complete the earlier MFC.
This commit is contained in:
John Baldwin 2023-01-26 12:19:12 -08:00
parent 79135b4788
commit 03851ae8cd

View file

@ -770,7 +770,7 @@ pci_vtinput_init(struct vmctx *ctx __unused, struct pci_devinst *pi,
return (-1);
}
struct pci_devemu pci_de_vinput = {
static struct pci_devemu pci_de_vinput = {
.pe_emu = "virtio-input",
.pe_init = pci_vtinput_init,
.pe_legacy_config = pci_vtinput_legacy_config,