mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 17:36:46 +07:00
55c1b0d27b
arch/sh/boot/compressed/cache.c:8: WARNING: space prohibited between function name and open parenthesis '(' Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
13 lines
214 B
C
13 lines
214 B
C
int cache_control(unsigned int command)
|
|
{
|
|
volatile unsigned int *p = (volatile unsigned int *) 0x80000000;
|
|
int i;
|
|
|
|
for (i = 0; i < (32 * 1024); i += 32) {
|
|
(void)*p;
|
|
p += (32 / sizeof(int));
|
|
}
|
|
|
|
return 0;
|
|
}
|