From patchwork Thu Oct 2 08:40:20 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 395857 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 4CD6D1400D5 for ; Thu, 2 Oct 2014 18:41:13 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750954AbaJBIks (ORCPT ); Thu, 2 Oct 2014 04:40:48 -0400 Received: from mail-wi0-f179.google.com ([209.85.212.179]:63831 "EHLO mail-wi0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752397AbaJBIkq (ORCPT ); Thu, 2 Oct 2014 04:40:46 -0400 Received: by mail-wi0-f179.google.com with SMTP id d1so3267317wiv.0 for ; Thu, 02 Oct 2014 01:40:45 -0700 (PDT) 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:in-reply-to :references; bh=XG0c4qkTUIL7FsbpF3hYQKlSiYWC0WrRQK538U4zupo=; b=UBMHE8TsD0gCSiGwUNVxYvX3UKWQ3ZjV+6B9DXRw6t91QI2cQzBATYkyJIjZ4fY70Z F3HgVC8RlK3bcNPDY6RsVcEn4I8zyKBy6rtbIqN3PNS3YTXSIfl2bnSIjNZH0ovVGkoO YWZkZwyKWocJdkJNdOuHELQ8E1u+ueN9wPGHIV6FfESh7VI0f9raogn2B7elxO37sHPN irrg76tR0yl0CHdW/olzkHTmtYoZl3dpwM6SL8PU7a5/YtgyqHfSZKkpAGPuH2AnzUe7 YmxhqRQuvNAaY1+uxx4PHec/NuMcbWlxAK3jX+O7/2/JxbrwJmXh2fzxCnbTeotUcDGx hO0Q== X-Gm-Message-State: ALoCoQmAmbE3h9OvmjexcdkSdhzBrGv4WE2KMvFRLQLKEpuuCd9PiD7cTxQ0sq//u/l/NMbUXA7Q X-Received: by 10.180.74.227 with SMTP id x3mr2146127wiv.80.1412239245758; Thu, 02 Oct 2014 01:40:45 -0700 (PDT) Received: from localhost.localdomain ([85.235.11.236]) by mx.google.com with ESMTPSA id ma8sm3767640wjb.46.2014.10.02.01.40.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 02 Oct 2014 01:40:44 -0700 (PDT) From: Linus Walleij To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: linux-gpio@vger.kernel.org, Linus Walleij Subject: [PATCH 7/7] pinctrl: abx500: mark pin config as generic Date: Thu, 2 Oct 2014 10:40:20 +0200 Message-Id: <1412239220-22495-8-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1412239220-22495-1-git-send-email-linus.walleij@linaro.org> References: <1412239220-22495-1-git-send-email-linus.walleij@linaro.org> Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org This is generic pin configuration, so add .is_generic. Signed-off-by: Linus Walleij --- drivers/pinctrl/nomadik/pinctrl-abx500.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pinctrl/nomadik/pinctrl-abx500.c b/drivers/pinctrl/nomadik/pinctrl-abx500.c index 3b3fbb4c21c9..5b300d2d6bf8 100644 --- a/drivers/pinctrl/nomadik/pinctrl-abx500.c +++ b/drivers/pinctrl/nomadik/pinctrl-abx500.c @@ -1105,6 +1105,7 @@ out: static const struct pinconf_ops abx500_pinconf_ops = { .pin_config_get = abx500_pin_config_get, .pin_config_set = abx500_pin_config_set, + .is_generic = true, }; static struct pinctrl_desc abx500_pinctrl_desc = {