From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753538AbbHVTgD (ORCPT ); Sat, 22 Aug 2015 15:36:03 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:42318 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753403AbbHVTgB (ORCPT ); Sat, 22 Aug 2015 15:36:01 -0400 Date: Sat, 22 Aug 2015 12:35:50 -0700 From: Guenter Roeck To: "James E.J. Bottomley" Cc: Helge Deller , linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org, "Luis R. Rodriguez" , Paul Gortmaker Subject: Re: [PATCH -next] parisc: Define ioremap_uc and ioremap_wc Message-ID: <20150822193549.GA27623@roeck-us.net> References: <1438396486-20937-1-git-send-email-linux@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1438396486-20937-1-git-send-email-linux@roeck-us.net> User-Agent: Mutt/1.5.23 (2014-03-12) X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ping ... the problem fixed with this patch still affects next-20150821. Guenter On Fri, Jul 31, 2015 at 07:34:46PM -0700, Guenter Roeck wrote: > Commit 3cc2dac5be3f ("drivers/video/fbdev/atyfb: Replace MTRR UC hole > with strong UC") introduces calls to ioremap_wc and ioremap_uc. This > causes build failures with parisc:allmodconfig. Map the missing > functions to ioremap_nocache. > > Fixes: 3cc2dac5be3f ("drivers/video/fbdev/atyfb: > Replace MTRR UC hole with strong UC") > Cc: Luis R. Rodriguez > Cc: Paul Gortmaker > Signed-off-by: Guenter Roeck > --- > arch/parisc/include/asm/io.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/parisc/include/asm/io.h b/arch/parisc/include/asm/io.h > index 8cd0abf28ffb..1a16f1d1075f 100644 > --- a/arch/parisc/include/asm/io.h > +++ b/arch/parisc/include/asm/io.h > @@ -137,6 +137,8 @@ static inline void __iomem * ioremap(unsigned long offset, unsigned long size) > return __ioremap(offset, size, _PAGE_NO_CACHE); > } > #define ioremap_nocache(off, sz) ioremap((off), (sz)) > +#define ioremap_wc ioremap_nocache > +#define ioremap_uc ioremap_nocache > > extern void iounmap(const volatile void __iomem *addr); > > -- > 2.1.4 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > >