PageRenderTime 27ms CodeModel.GetById 22ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/m68k/include/asm/cache.h

https://bitbucket.org/cresqo/cm7-p500-kernel
C Header | 13 lines | 6 code | 3 blank | 4 comment | 0 complexity | 16aec9fe6bfe4c074436515b706729e6 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
 1/*
 2 * include/asm-m68k/cache.h
 3 */
 4#ifndef __ARCH_M68K_CACHE_H
 5#define __ARCH_M68K_CACHE_H
 6
 7/* bytes per L1 cache line */
 8#define        L1_CACHE_SHIFT  4
 9#define        L1_CACHE_BYTES  (1<< L1_CACHE_SHIFT)
10
11#define ARCH_KMALLOC_MINALIGN	L1_CACHE_BYTES
12
13#endif