Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1945900AbbEWEZg (ORCPT ); Sat, 23 May 2015 00:25:36 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:49809 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753299AbbEWEZd (ORCPT ); Sat, 23 May 2015 00:25:33 -0400 Message-ID: <5560013C.5060307@roeck-us.net> Date: Fri, 22 May 2015 21:25:32 -0700 From: Guenter Roeck User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: linux-kernel@vger.kernel.org CC: Geert Uytterhoeven , Steven Miao , adi-buildroot-devel@lists.sourceforge.net Subject: Re: [PATCH resend 5/5] blackfin: Fix build error References: <1430778649-28126-1-git-send-email-linux@roeck-us.net> <1430778649-28126-6-git-send-email-linux@roeck-us.net> In-Reply-To: <1430778649-28126-6-git-send-email-linux@roeck-us.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated_sender: linux@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: linux@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 Content-Length: 2016 Lines: 55 ping .... On 05/04/2015 03:30 PM, Guenter Roeck wrote: > Fix > > include/asm-generic/io.h: In function 'readb': > include/asm-generic/io.h:113:2: error: > implicit declaration of function 'bfin_read8' > include/asm-generic/io.h: In function 'readw': > include/asm-generic/io.h:121:2: error: > implicit declaration of function 'bfin_read16' > include/asm-generic/io.h: In function 'readl': > include/asm-generic/io.h:129:2: error: > implicit declaration of function 'bfin_read32' > include/asm-generic/io.h: In function 'writeb': > include/asm-generic/io.h:147:2: error: > implicit declaration of function 'bfin_write8' > include/asm-generic/io.h: In function 'writew': > include/asm-generic/io.h:155:2: error: > implicit declaration of function 'bfin_write16' > include/asm-generic/io.h: In function 'writel': > include/asm-generic/io.h:163:2: error: > implicit declaration of function 'bfin_write32' > > Reported-by: Geert Uytterhoeven > Fixes: 1a3372bc522ef ("blackfin: io: define __raw_readx/writex with > bfin_readx/writex") > Cc: Steven Miao > Signed-off-by: Guenter Roeck > --- > Please consider pushing this patch into mainline, or provide feedback > on how to improve it to be acceptable. > > arch/blackfin/include/asm/io.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/blackfin/include/asm/io.h b/arch/blackfin/include/asm/io.h > index 4e8ad0523118..6abebe82d4e9 100644 > --- a/arch/blackfin/include/asm/io.h > +++ b/arch/blackfin/include/asm/io.h > @@ -10,6 +10,7 @@ > #include > #include > #include > +#include > > #define __raw_readb bfin_read8 > #define __raw_readw bfin_read16 > -- 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/