License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / m68k / include / asm / io.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
49148020 2#ifdef __uClinux__
a1ce3928 3#include <asm/io_no.h>
49148020 4#else
a1ce3928 5#include <asm/io_mm.h>
49148020 6#endif
88a9192e
WD
7
8#define readb_relaxed(addr) readb(addr)
9#define readw_relaxed(addr) readw(addr)
10#define readl_relaxed(addr) readl(addr)
11
12#define writeb_relaxed(b, addr) writeb(b, addr)
13#define writew_relaxed(b, addr) writew(b, addr)
14#define writel_relaxed(b, addr) writel(b, addr)