diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2009-02-07 11:15:30 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-02-07 11:15:30 +0000 |
| commit | 3c7e299cf35fa4f8cadaaed4afe9cb164871c586 (patch) | |
| tree | 8140ddb53bec8596fa82488358ff97f3c6fb1521 /apps | |
| parent | 4d3a020f274d49c2b8f10cfdad8c67aaa153bebe (diff) | |
| download | rockbox-3c7e299cf35fa4f8cadaaed4afe9cb164871c586.zip rockbox-3c7e299cf35fa4f8cadaaed4afe9cb164871c586.tar.gz rockbox-3c7e299cf35fa4f8cadaaed4afe9cb164871c586.tar.bz2 rockbox-3c7e299cf35fa4f8cadaaed4afe9cb164871c586.tar.xz | |
Simplify conditions for including serial port support (it's now HAVE_SERIAL). This should save a little binsize and RAM for target that don't have/use a serial port.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19936 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index 94a9231..24a89ec 100644 --- a/apps/main.c +++ b/apps/main.c @@ -388,7 +388,7 @@ static void init(void) #ifdef DEBUG debug_init(); #else -#if !defined(HAVE_FMADC) && !(CONFIG_STORAGE & STORAGE_MMC) +#ifdef HAVE_SERIAL serial_setup(); #endif #endif |