From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755965Ab3EIXvw (ORCPT ); Thu, 9 May 2013 19:51:52 -0400 Received: from mail-ie0-f175.google.com ([209.85.223.175]:47501 "EHLO mail-ie0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754999Ab3EIXvv (ORCPT ); Thu, 9 May 2013 19:51:51 -0400 MIME-Version: 1.0 In-Reply-To: References: From: Alexandre Courbot Date: Fri, 10 May 2013 08:51:30 +0900 Message-ID: Subject: Re: [git pull] GENERIC_GPIO removal To: Linus Torvalds , Grant Likely , Vineet Gupta Cc: Linus Walleij , Linux Kernel Mailing List Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, May 10, 2013 at 3:11 AM, Grant Likely wrote: > On Thu, May 9, 2013 at 6:08 PM, Linus Torvalds > wrote: >> On Wed, May 8, 2013 at 6:48 AM, Grant Likely wrote: >>> >>> * "git grep '\bGENERIC_GPIO\b'" should return 1 hit in the Chinese >>> documentation. >> >> That's the oddest command line I've seen in some time. >> >> You do realize that "git grep" is perfectly happy to just take the >> "-w" flag exactly like normal grep? > > Hahaha. That's just what Alexandre passed to me. I didn't really think > much about it. :-) /me likes regexps. You should see my workaround to using the -i option. Thanks for the merge, it clears the path for more GPIO stuff. arch/arc introduced a new dangling definition of GENERIC_GPIO in -next that now appears in your tree, the following patch by Vineet takes care of it. Either you can merge it directly or Vineet will make sure this patch is in his next pull request. Alex. -----8<-----8<-----8< From: Vineet Gupta Date: Wed, 17 Apr 2013 17:33:02 +0530 Subject: [PATCH] ARC: [TB10x] Remove GENERIC_GPIO This tracks Alexandre Courbot's mainline GPIO rework Signed-off-by: Vineet Gupta Acked-by: Alexandre Courbot --- arch/arc/plat-tb10x/Kconfig | 7 ------- 1 file changed, 7 deletions(-) diff --git a/arch/arc/plat-tb10x/Kconfig b/arch/arc/plat-tb10x/Kconfig index 4e12127..1d34521 100644 --- a/arch/arc/plat-tb10x/Kconfig +++ b/arch/arc/plat-tb10x/Kconfig @@ -27,10 +27,3 @@ menuconfig ARC_PLAT_TB10X Abilis Systems. TB10x is based on the ARC700 CPU architecture. Say Y if you are building a kernel for one of the SOCs in this series (e.g. TB100 or TB101). If in doubt say N. - -if ARC_PLAT_TB10X - -config GENERIC_GPIO - def_bool y - -endif