xref: /linux/arch/powerpc/boot/ugecon.h (revision 44f57d78)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * arch/powerpc/boot/ugecon.h
4  *
5  * USB Gecko early bootwrapper console.
6  * Copyright (C) 2008-2009 The GameCube Linux Team
7  * Copyright (C) 2008,2009 Albert Herranz
8  */
9 
10 #ifndef __UGECON_H
11 #define __UGECON_H
12 
13 extern void *ug_probe(void);
14 
15 extern void ug_putc(char ch);
16 extern void ug_console_write(const char *buf, int len);
17 
18 #endif /* __UGECON_H */
19 
20