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