From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mika Westerberg Subject: [PATCH v2 1/2] gpio: Increase ARCH_NR_GPIOs to 512 Date: Mon, 15 Sep 2014 17:09:44 +0300 Message-ID: <1410790185-31101-1-git-send-email-mika.westerberg@linux.intel.com> Return-path: Received: from mga11.intel.com ([192.55.52.93]:32865 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751979AbaIOOJt (ORCPT ); Mon, 15 Sep 2014 10:09:49 -0400 Sender: linux-gpio-owner@vger.kernel.org List-Id: linux-gpio@vger.kernel.org To: Linus Walleij , Alexandre Courbot Cc: Arnd Bergmann , Alan Cox , Ning Li , Mika Westerberg , linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org Some newer Intel SoCs, like Braswell already have more than 256 GPIOs available so the default limit is exceeded. Instead of adding more architecture specific gpio.h files with custom ARCH_NR_GPIOs we increase the gpiolib default limit to be twice the current. Signed-off-by: Mika Westerberg --- Changes to previous version is that now we increase the common limit instead of adding x86 specific gpio.h include/asm-generic/gpio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index c1d4105e1c1d..383ade1a211b 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h @@ -27,7 +27,7 @@ */ #ifndef ARCH_NR_GPIOS -#define ARCH_NR_GPIOS 256 +#define ARCH_NR_GPIOS 512 #endif /* -- 2.1.0