Linux Audio

Check our new training course

Loading...
v5.9
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _M68K_IO_H
 3#define _M68K_IO_H
 4
 5#if defined(__uClinux__) || defined(CONFIG_COLDFIRE)
 6#include <asm/io_no.h>
 7#else
 8#include <asm/io_mm.h>
 9#endif
10
 
 
 
11#include <asm-generic/io.h>
12
13#endif /* _M68K_IO_H */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _M68K_IO_H
 3#define _M68K_IO_H
 4
 5#if defined(__uClinux__) || defined(CONFIG_COLDFIRE)
 6#include <asm/io_no.h>
 7#else
 8#include <asm/io_mm.h>
 9#endif
10
11#define gf_ioread32 ioread32be
12#define gf_iowrite32 iowrite32be
13
14#include <asm-generic/io.h>
15
16#endif /* _M68K_IO_H */