From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shreenidhi Shedi Date: Sat, 30 Jun 2018 03:21:38 +0530 Subject: [U-Boot] [PATCH v1 1/6] microblaze: Use default implementation from include/linux/io.h In-Reply-To: <20180629215143.3975-1-yesshedi@gmail.com> References: <20180629215143.3975-1-yesshedi@gmail.com> Message-ID: <20180629215143.3975-2-yesshedi@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Signed-off-by: Shreenidhi Shedi --- Changes in v1: - Removed few macros which aren't needed anymore - Few cosmetic changes - Converted Xilinx Axi Watchdog driver to driver model arch/microblaze/include/asm/io.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h index c7516a47e8..26a437c248 100644 --- a/arch/microblaze/include/asm/io.h +++ b/arch/microblaze/include/asm/io.h @@ -120,9 +120,6 @@ io_outsl (unsigned long port, const void *src, unsigned long count) #define insw(a,b,l) io_insw(a,b,l) #define insl(a,b,l) io_insl(a,b,l) - -#define iounmap(addr) ((void)0) -#define ioremap(physaddr, size) (physaddr) #define ioremap_nocache(physaddr, size) (physaddr) #define ioremap_writethrough(physaddr, size) (physaddr) #define ioremap_fullcache(physaddr, size) (physaddr) -- 2.17.1