1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Generic QEMU header
4 *
5 * Copyright 2023 Google LLC
6 */
7
8#ifndef __QEMU_H
9#define __QEMU_H
10
11/* set up the chipset for QEMU so that video can be used */
12void qemu_chipset_init(void);
13
14#endif
15