Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752790AbbEFJPy (ORCPT ); Wed, 6 May 2015 05:15:54 -0400 Received: from mail-wg0-f53.google.com ([74.125.82.53]:35404 "EHLO mail-wg0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750724AbbEFJPu (ORCPT ); Wed, 6 May 2015 05:15:50 -0400 MIME-Version: 1.0 In-Reply-To: <1430778649-28126-6-git-send-email-linux@roeck-us.net> References: <1430778649-28126-1-git-send-email-linux@roeck-us.net> <1430778649-28126-6-git-send-email-linux@roeck-us.net> Date: Wed, 6 May 2015 17:15:49 +0800 Message-ID: Subject: Re: [PATCH resend 5/5] blackfin: Fix build error From: Steven Miao To: Guenter Roeck Cc: "open list:CAN NETWORK DRIVERS , open list:NETWORKING DRIVERS , open list" , Geert Uytterhoeven , bfin Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2106 Lines: 56 Applied. Thanks! On Tue, May 5, 2015 at 6:30 AM, 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 > -- > 2.1.0 > -- 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/