bhyve: Put the prototype for vga_render() in a header

No functional change intended.

MFC after:	1 week
This commit is contained in:
Mark Johnston 2022-10-23 10:22:39 -04:00
parent f703dc0ef0
commit 84633b9d52
2 changed files with 2 additions and 3 deletions

View File

@ -346,9 +346,6 @@ pci_fbuf_parse_config(struct pci_fbuf_softc *sc, nvlist_t *nvl)
return (0);
}
extern void vga_render(struct bhyvegc *gc, void *arg);
static void
pci_fbuf_render(struct bhyvegc *gc, void *arg)
{

View File

@ -157,6 +157,8 @@
#define DAC_IDX_WR_PORT 0x3c8
#define DAC_DATA_PORT 0x3c9
struct bhyvegc;
void *vga_init(int io_only);
void vga_render(struct bhyvegc *gc, void *arg);
#endif /* _VGA_H_ */