| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) |
|---|
| 3 | | - * |
|---|
| 4 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 5 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 6 | | - * published by the Free Software Foundation. |
|---|
| 7 | 4 | */ |
|---|
| 8 | 5 | |
|---|
| 9 | 6 | #ifndef _ASM_ARC_IO_H |
|---|
| .. | .. |
|---|
| 35 | 32 | { |
|---|
| 36 | 33 | } |
|---|
| 37 | 34 | |
|---|
| 38 | | -extern void iounmap(const void __iomem *addr); |
|---|
| 39 | | - |
|---|
| 40 | | -#define ioremap_nocache(phy, sz) ioremap(phy, sz) |
|---|
| 41 | | -#define ioremap_wc(phy, sz) ioremap(phy, sz) |
|---|
| 42 | | -#define ioremap_wt(phy, sz) ioremap(phy, sz) |
|---|
| 35 | +extern void iounmap(const volatile void __iomem *addr); |
|---|
| 43 | 36 | |
|---|
| 44 | 37 | /* |
|---|
| 45 | 38 | * io{read,write}{16,32}be() macros |
|---|