17 lines
298 B
C
17 lines
298 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (c) 2019 MediaTek Inc.
|
||
|
* Author: Sagy Shih <sagy.shih@mediatek.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef __EMI_IO_H__
|
||
|
#define __EMI_IO_H__
|
||
|
|
||
|
/* only for arm64 */
|
||
|
#ifdef CONFIG_ARM64
|
||
|
#define IOMEM(a) ((void __force __iomem *)((a)))
|
||
|
#endif
|
||
|
|
||
|
#endif /* __EMI_IO_H__ */
|
||
|
|