From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751568AbbJEL3f (ORCPT ); Mon, 5 Oct 2015 07:29:35 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:35960 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750824AbbJEL3e (ORCPT ); Mon, 5 Oct 2015 07:29:34 -0400 From: Thierry Reding To: Ralf Baechle Cc: Lars-Peter Clausen , linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Thierry Reding Subject: [PATCH] MIPS: jz4740: Add missing gpio.h include Date: Mon, 5 Oct 2015 13:29:31 +0200 Message-Id: <1444044571-11304-1-git-send-email-thierry.reding@gmail.com> X-Mailer: git-send-email 2.5.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 832f5dacfa0b ("MIPS: Remove all the uses of custom gpio.h") was incomplete in that it didn't replace any of the includes for the JZ4740 platform and thus broke the qi_lb60_defconfig build. Signed-off-by: Thierry Reding --- arch/mips/jz4740/board-qi_lb60.c | 1 + arch/mips/jz4740/gpio.c | 1 + 2 files changed, 2 insertions(+) diff --git a/arch/mips/jz4740/board-qi_lb60.c b/arch/mips/jz4740/board-qi_lb60.c index 4e62bf85d0b0..f2885adda9d0 100644 --- a/arch/mips/jz4740/board-qi_lb60.c +++ b/arch/mips/jz4740/board-qi_lb60.c @@ -35,6 +35,7 @@ #include +#include #include #include "clock.h" diff --git a/arch/mips/jz4740/gpio.c b/arch/mips/jz4740/gpio.c index 6cd69fdaa1c5..386626376b18 100644 --- a/arch/mips/jz4740/gpio.c +++ b/arch/mips/jz4740/gpio.c @@ -28,6 +28,7 @@ #include #include +#include #define JZ4740_GPIO_BASE_A (32*0) #define JZ4740_GPIO_BASE_B (32*1) -- 2.5.0