1/* $Id: cache.h,v 1.1.1.1 2008/10/15 03:27:26 james26_jang 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