1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __ARCH_H8300_CACHE_H
3#define __ARCH_H8300_CACHE_H
4
5/* bytes per L1 cache line */
6#define        L1_CACHE_SHIFT  2
7#define        L1_CACHE_BYTES  (1 << L1_CACHE_SHIFT)
8
9#define __cacheline_aligned
10#define ____cacheline_aligned
11
12#endif
13