File: /usr/src/linux/include/asm-sh/cache.h

1     /* $Id: cache.h,v 1.3 2000/07/04 06:24:49 gniibe Exp $
2      *
3      * include/asm-sh/cache.h
4      *
5      * Copyright 1999 (C) Niibe Yutaka
6      */
7     #ifndef __ASM_SH_CACHE_H
8     #define __ASM_SH_CACHE_H
9     
10     /* bytes per L1 cache line */
11     #if defined(__sh3__)
12     #define        L1_CACHE_BYTES  16
13     #elif defined(__SH4__)
14     #define        L1_CACHE_BYTES  32
15     #endif
16     
17     #endif /* __ASM_SH_CACHE_H */
18