Move c/h files implementing/defining standard library stuff into a new libc directory...
[kugel-rb.git] / firmware / target / arm / pnx0101 / iriver-ifp7xx / usb-ifp7xx.c
blob2f3c4189e5553c0f407592cd73d5d1711a6160c0
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 by Barry Wardell
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #include "config.h"
22 #include "cpu.h"
23 #include "kernel.h"
24 #include "thread.h"
25 #include "system.h"
26 #include "debug.h"
27 #include "ata.h"
28 #include "fat.h"
29 #include "disk.h"
30 #include "panic.h"
31 #include "lcd.h"
32 #include "usb.h"
33 #include "button.h"
34 #include "string.h"
36 void usb_init_device(void)
40 int usb_detect(void)
42 /* TODO: Implement USB_ISP1582 */
43 return USB_EXTRACTED;
46 void usb_enable(bool on)
48 /* TODO: Implement USB_ISP1582 */
49 (void)on;