forked from len0rd/rockbox
Fix red: defined(x || y) is not valid C preprocessor
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29103 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
476e464901
commit
a6debb65fa
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ do { \
|
||||||
#define SLEEP(x) { register int __i; for(__i=0; __i<x; __i++) asm volatile("nop\n nop\n"); }
|
#define SLEEP(x) { register int __i; for(__i=0; __i<x; __i++) asm volatile("nop\n nop\n"); }
|
||||||
#define DELAY SLEEP(700000);
|
#define DELAY SLEEP(700000);
|
||||||
|
|
||||||
#if (defined((ONDA_VX777) || (ONDA_VX747P)) && !defined(BOOTLOADER)) \
|
#if ((defined(ONDA_VX777) || defined(ONDA_VX747P)) && !defined(BOOTLOADER)) \
|
||||||
|| defined(USB_BOOT)
|
|| defined(USB_BOOT)
|
||||||
/*
|
/*
|
||||||
* Onda VX777/VX747+ needs this in order to boot correctly, it looks like the
|
* Onda VX777/VX747+ needs this in order to boot correctly, it looks like the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue