1
0
Fork 0
forked from len0rd/rockbox

Do the CONFIG_USBOTG define correctly

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12382 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-02-18 04:57:28 +00:00
parent 00d249ab67
commit ac61951452
3 changed files with 11 additions and 7 deletions

View file

@ -95,11 +95,11 @@
#include "lcd-remote.h"
#endif
#if defined(CONFIG_USBOTG) && CONFIG_USBOTG == USBOTG_ISP1362
#if CONFIG_USBOTG == USBOTG_ISP1362
#include "isp1362.h"
#endif
#if defined(CONFIG_USBOTG) && CONFIG_USBOTG == USBOTG_M5636
#if CONFIG_USBOTG == USBOTG_M5636
#include "m5636.h"
#endif
@ -350,9 +350,9 @@ static void init(void)
adc_init();
usb_init();
#if defined(CONFIG_USBOTG) && CONFIG_USBOTG == USBOTG_ISP1362
#if CONFIG_USBOTG == USBOTG_ISP1362
isp1362_init();
#elif defined(CONFIG_USBOTG) && CONFIG_USBOTG == USBOTG_M5636
#elif CONFIG_USBOTG == USBOTG_M5636
m5636_init();
#endif