https://github.com/torvalds/linux
Raw File
Tip revision: 9e1ff307c779ce1f0f810c7ecce3d95bbae40896 authored by Linus Torvalds on 03 October 2021, 21:08:47 UTC
Linux 5.15-rc4
Tip revision: 9e1ff30
ugecon.h
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * arch/powerpc/boot/ugecon.h
 *
 * USB Gecko early bootwrapper console.
 * Copyright (C) 2008-2009 The GameCube Linux Team
 * Copyright (C) 2008,2009 Albert Herranz
 */

#ifndef __UGECON_H
#define __UGECON_H

extern void *ug_probe(void);

extern void ug_putc(char ch);
extern void ug_console_write(const char *buf, int len);

#endif /* __UGECON_H */

back to top