Path: blob/master/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h
10819 views
/*1* arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h2*3* udbg serial input/output routines for the USB Gecko adapter.4* Copyright (C) 2008-2009 The GameCube Linux Team5* Copyright (C) 2008,2009 Albert Herranz6*7* This program is free software; you can redistribute it and/or8* modify it under the terms of the GNU General Public License9* as published by the Free Software Foundation; either version 210* of the License, or (at your option) any later version.11*12*/1314#ifndef __USBGECKO_UDBG_H15#define __USBGECKO_UDBG_H1617#ifdef CONFIG_USBGECKO_UDBG1819extern void __init ug_udbg_init(void);2021#else2223static inline void __init ug_udbg_init(void)24{25}2627#endif /* CONFIG_USBGECKO_UDBG */2829void __init udbg_init_usbgecko(void);3031#endif /* __USBGECKO_UDBG_H */323334