Message ID | 20190817073253.27819-4-hch@lst.de (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | [01/26] mtd/maps/pxa2xx: use ioremap_cache insted of ioremap_cached | expand |
On Sat, Aug 17, 2019 at 9:41 AM Christoph Hellwig <hch@lst.de> wrote: > No callers of this function. > > Signed-off-by: Christoph Hellwig <hch@lst.de> > arch/m68k/include/asm/kmap.h | 7 ------- Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Gr{oetje,eeting}s, Geert
On 17. 08. 19 9:32, Christoph Hellwig wrote: > No callers of this function. > > Signed-off-by: Christoph Hellwig <hch@lst.de> > --- > arch/m68k/include/asm/kmap.h | 7 ------- > arch/microblaze/include/asm/io.h | 1 - > 2 files changed, 8 deletions(-) > > diff --git a/arch/m68k/include/asm/kmap.h b/arch/m68k/include/asm/kmap.h > index aac7f045f7f0..03d904fe6087 100644 > --- a/arch/m68k/include/asm/kmap.h > +++ b/arch/m68k/include/asm/kmap.h > @@ -43,13 +43,6 @@ static inline void __iomem *ioremap_wt(unsigned long physaddr, > return __ioremap(physaddr, size, IOMAP_WRITETHROUGH); > } > > -#define ioremap_fullcache ioremap_fullcache > -static inline void __iomem *ioremap_fullcache(unsigned long physaddr, > - unsigned long size) > -{ > - return __ioremap(physaddr, size, IOMAP_FULL_CACHING); > -} > - > #define memset_io memset_io > static inline void memset_io(volatile void __iomem *addr, unsigned char val, > int count) > diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h > index c7968139486f..86c95b2a1ce1 100644 > --- a/arch/microblaze/include/asm/io.h > +++ b/arch/microblaze/include/asm/io.h > @@ -40,7 +40,6 @@ extern void iounmap(volatile void __iomem *addr); > > extern void __iomem *ioremap(phys_addr_t address, unsigned long size); > #define ioremap_nocache(addr, size) ioremap((addr), (size)) > -#define ioremap_fullcache(addr, size) ioremap((addr), (size)) > #define ioremap_wc(addr, size) ioremap((addr), (size)) > #define ioremap_wt(addr, size) ioremap((addr), (size)) > > Acked-by: Michal Simek <monstr@monstr.eu> (for Microblaze) Thanks, Michal
diff --git a/arch/m68k/include/asm/kmap.h b/arch/m68k/include/asm/kmap.h index aac7f045f7f0..03d904fe6087 100644 --- a/arch/m68k/include/asm/kmap.h +++ b/arch/m68k/include/asm/kmap.h @@ -43,13 +43,6 @@ static inline void __iomem *ioremap_wt(unsigned long physaddr, return __ioremap(physaddr, size, IOMAP_WRITETHROUGH); } -#define ioremap_fullcache ioremap_fullcache -static inline void __iomem *ioremap_fullcache(unsigned long physaddr, - unsigned long size) -{ - return __ioremap(physaddr, size, IOMAP_FULL_CACHING); -} - #define memset_io memset_io static inline void memset_io(volatile void __iomem *addr, unsigned char val, int count) diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h index c7968139486f..86c95b2a1ce1 100644 --- a/arch/microblaze/include/asm/io.h +++ b/arch/microblaze/include/asm/io.h @@ -40,7 +40,6 @@ extern void iounmap(volatile void __iomem *addr); extern void __iomem *ioremap(phys_addr_t address, unsigned long size); #define ioremap_nocache(addr, size) ioremap((addr), (size)) -#define ioremap_fullcache(addr, size) ioremap((addr), (size)) #define ioremap_wc(addr, size) ioremap((addr), (size)) #define ioremap_wt(addr, size) ioremap((addr), (size))
No callers of this function. Signed-off-by: Christoph Hellwig <hch@lst.de> --- arch/m68k/include/asm/kmap.h | 7 ------- arch/microblaze/include/asm/io.h | 1 - 2 files changed, 8 deletions(-)