diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2011-07-23 11:45:22 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2011-07-23 11:45:22 +0000 |
| commit | eb90d956935019f577311ebc7aec3a7898d76019 (patch) | |
| tree | c4ac810faaf390b9020c46dc2197008679099034 /apps/misc.c | |
| parent | 06c94740e510d0ce04e069f34631a0539e9e6742 (diff) | |
| download | rockbox-eb90d956935019f577311ebc7aec3a7898d76019.zip rockbox-eb90d956935019f577311ebc7aec3a7898d76019.tar.gz rockbox-eb90d956935019f577311ebc7aec3a7898d76019.tar.bz2 rockbox-eb90d956935019f577311ebc7aec3a7898d76019.tar.xz | |
imx233/fuze+: huge rework
- enable MMU
-rework lcd frame buffer
- add rtc/adc/power stubs (or not)
- fix a few MMC related defines (hopefully)
- implement cache handling for DMA
- more SD work
- add keymap (based on clip)
- add virtual buttons
- update linker scripts
- big step toward apps actually compiling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30200 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.c')
| -rw-r--r-- | apps/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c index bba3969..83e42cf 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -528,7 +528,7 @@ long default_event_handler_ex(long event, void (*callback)(void *), void *parame case SYS_USB_CONNECTED: if (callback != NULL) callback(parameter); -#if (CONFIG_STORAGE & STORAGE_MMC) +#if (CONFIG_STORAGE & STORAGE_MMC) && (defined(ARCHOS_ONDIOSP) || defined(ARCHOS_ONDIOFM)) if (!mmc_touched() || (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED)) #endif |