GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / sh / boot / compressed / cache.c
blobd0b77b68a4d0d95d74db19a0172b6f126a214c61
1 int cache_control(unsigned int command)
3 volatile unsigned int *p = (volatile unsigned int *) 0x80000000;
4 int i;
6 for (i = 0; i < (32 * 1024); i += 32) {
7 (void)*p;
8 p += (32 / sizeof(int));
11 return 0;