mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 17:10:11 +00:00
15 lines
235 B
C
15 lines
235 B
C
|
/* 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
|