[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1610729929-188490-3-git-send-email-john.garry@huawei.com>
Date: Sat, 16 Jan 2021 00:58:47 +0800
From: John Garry <john.garry@...wei.com>
To: <catalin.marinas@....com>, <will@...nel.org>, <arnd@...db.de>,
<akpm@...ux-foundation.org>, <xuwei5@...ilicon.com>,
<lorenzo.pieralisi@....com>, <helgaas@...nel.org>,
<jiaxun.yang@...goat.com>, <song.bao.hua@...ilicon.com>
CC: <linux-arm-kernel@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>, <linux-arch@...r.kernel.org>,
<linux-mips@...r.kernel.org>, <linux-pci@...r.kernel.org>,
<linuxarm@...neuler.org>, John Garry <john.garry@...wei.com>
Subject: [PATCH RFC 2/4] asm-generic/io.h: Add IO_SPACE_BASE
Add a fallback default for IO_SPACE_BASE (at 0) for when an architecture
does not define a value.
Signed-off-by: John Garry <john.garry@...wei.com>
---
include/asm-generic/io.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/asm-generic/io.h b/include/asm-generic/io.h
index 9ea83d80eb6f..4d74a0c696ca 100644
--- a/include/asm-generic/io.h
+++ b/include/asm-generic/io.h
@@ -448,6 +448,10 @@ static inline void writesq(volatile void __iomem *addr, const void *buffer,
#define IO_SPACE_LIMIT 0xffff
#endif
+#ifndef IO_SPACE_BASE
+#define IO_SPACE_BASE 0x0
+#endif
+
/*
* {in,out}{b,w,l}() access little endian I/O. {in,out}{b,w,l}_p() can be
* implemented on hardware that needs an additional delay for I/O accesses to
--
2.26.2
Powered by blists - more mailing lists