From patchwork Wed Jun 8 11:46:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 69633 Delivered-To: patch@linaro.org Received: by 10.140.106.246 with SMTP id e109csp2445221qgf; Wed, 8 Jun 2016 04:47:03 -0700 (PDT) X-Received: by 10.107.170.157 with SMTP id g29mr8119799ioj.44.1465386423169; Wed, 08 Jun 2016 04:47:03 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id wh9si1114171pac.24.2016.06.08.04.47.02; Wed, 08 Jun 2016 04:47:03 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-gpio-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@linaro.org; spf=pass (google.com: best guess record for domain of linux-gpio-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-gpio-owner@vger.kernel.org; dmarc=fail (p=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933003AbcFHLrB (ORCPT + 4 others); Wed, 8 Jun 2016 07:47:01 -0400 Received: from mail-lf0-f42.google.com ([209.85.215.42]:34064 "EHLO mail-lf0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751635AbcFHLrA (ORCPT ); Wed, 8 Jun 2016 07:47:00 -0400 Received: by mail-lf0-f42.google.com with SMTP id s186so3948204lfs.1 for ; Wed, 08 Jun 2016 04:47:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=XHDnRJ89rsGf7XZIKrBfeJEcQhgxemVfCMMxmgYgMko=; b=gUf+oVhn2YDBee/io07LTpHNOqZkfH7C1EiIVzteFvfNCQ1PWNbZ3eTk49X520xw5C nzGhatS1qoEG3YtwTE8ELjJhsoFy7uR9omVIWoWWlbY/06RFT1gHi+eK+54VwNZVXwVM yMNylLj7B23536na/x4KeBCf+qv/tkuXyVm3k= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=XHDnRJ89rsGf7XZIKrBfeJEcQhgxemVfCMMxmgYgMko=; b=VVADObIP4BK0MLH15iA2Qbon6IDE8A5F4PYeUfV5x1V1M8EN0erctL1XmbaTNjXMJQ +e7+O+n/CyKsW2kSi3xM7G0OznJO0+eTPJVtXrC3JNnIYkccGfGV9pRWZUZv8an9Gwof N+a3kROgrcLoS8jauM7VaRdjt1adYmmxclV4qLKWjWFw4t5x5AkFsYvz2hWaHqtShnw/ KWSXaj+azbJArrgCbWgfMllV8kk+1Pq14YqMg9cgyt273W9YKEIagOEFii9uqcI9zC0g FLMBTMBr+tAQmr+jo2NZciijkPKpCYPNip9c8yjMrvMTBMaEVkaToIoRL/35BDHXtFqH kxJw== X-Gm-Message-State: ALyK8tJ+UmZ9MOX4YbYirZqJV/vVjr/d9uVlrHMyV5838HD5b06706CK/sqHdjzO3gs2Btp7 X-Received: by 10.25.19.204 with SMTP id 73mr1897811lft.24.1465386419077; Wed, 08 Jun 2016 04:46:59 -0700 (PDT) Received: from localhost.localdomain ([85.235.10.227]) by smtp.gmail.com with ESMTPSA id q20sm107117lbn.25.2016.06.08.04.46.58 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 08 Jun 2016 04:46:58 -0700 (PDT) From: Linus Walleij To: linux-gpio@vger.kernel.org, Alexandre Courbot Cc: Linus Walleij Subject: [PATCH] gpio: select ANON_INODES Date: Wed, 8 Jun 2016 13:46:56 +0200 Message-Id: <1465386416-31743-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 2.4.11 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org The build servers found that gpiolib is using ANON_INODES but has forgotten to select it. Fix this. Fixes: 521a2ad6f862 ("gpio: add userspace ABI for GPIO line information") Signed-off-by: Linus Walleij --- drivers/gpio/Kconfig | 1 + 1 file changed, 1 insertion(+) -- 2.4.11 -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 48da857f4774..a116609b1914 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -33,6 +33,7 @@ config ARCH_REQUIRE_GPIOLIB menuconfig GPIOLIB bool "GPIO Support" + select ANON_INODES help This enables GPIO support through the generic GPIO library. You only need to enable this, if you also want to enable