From patchwork Fri Sep 5 07:55:39 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 4850481 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 69A87C0338 for ; Fri, 5 Sep 2014 08:02:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3D26A20268 for ; Fri, 5 Sep 2014 08:02:52 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 107C920266 for ; Fri, 5 Sep 2014 08:02:51 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1XPoNO-0004qX-AT; Fri, 05 Sep 2014 07:56:10 +0000 Received: from mail-wg0-f43.google.com ([74.125.82.43]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1XPoNM-0004jY-6l for linux-arm-kernel@lists.infradead.org; Fri, 05 Sep 2014 07:56:08 +0000 Received: by mail-wg0-f43.google.com with SMTP id a1so11170663wgh.26 for ; Fri, 05 Sep 2014 00:55: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; bh=eeKmMjfP+2zcXGPMtQugCbLAGzAt2kmu/f+DXXBvzhA=; b=G8nfdWTqmFsNDgHu3jJ2FUppMISV/Mnn95N2CRggP6/HUIrWG0RNOJSDKqLI8R1Lm9 d2g2FlLo1+Lirj1XU+/NctW+AY01ylIfE+0pzcDyrnO21GleBlNkWRn1RtEqlHwXoK0e GmwC7l3PhHh2q9UagZ1gyFaa9jCrgoVJjCCAOwf4asLwg9vTCgr8kc+YTL9o4tHQPOPr Yk33TWD2vY7KI/3RWP0fcgaWunNHF9p/Kr3tY33cKBueljRzaERkSSynS/el0Gohc79y y8DJekRVwkq0HDfoX4+4yvTY5k3eQlNXZYilYibKod52/xq+Yv33ARaHLW+2rdEvQEgN YRkA== X-Gm-Message-State: ALoCoQmKFbAf517HNSXns0snM0RkE9sWUMUtEtqEC1NTBwgQKybnkAisiK8d+YbnGknKPnbBsLQI X-Received: by 10.180.184.20 with SMTP id eq20mr1487306wic.61.1409903745683; Fri, 05 Sep 2014 00:55:45 -0700 (PDT) Received: from localhost.localdomain ([85.235.11.236]) by mx.google.com with ESMTPSA id i5sm587383wjz.0.2014.09.05.00.55.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 05 Sep 2014 00:55:44 -0700 (PDT) From: Linus Walleij To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH] pinctrl: single: fix freudian slip Date: Fri, 5 Sep 2014 09:55:39 +0200 Message-Id: <1409903739-25998-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 1.9.3 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140905_005608_394168_8FE619B1 X-CRM114-Status: GOOD ( 11.14 ) X-Spam-Score: -0.7 (/) Cc: linux-gpio@vger.kernel.org, Linus Walleij X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-3.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP commit 03e9f0cac5da6af85758276cb4624caf5911f2b9 "pinctrl: clean up after enable refactoring" renamed the vtable callback .enable to .set_mux. The renaming was done manually, and one of the alterations contained a freudian slip. I confess, I am human. Signed-off-by: Linus Walleij --- drivers/pinctrl/pinctrl-single.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c index 9032422ad18f..fb94b772ad62 100644 --- a/drivers/pinctrl/pinctrl-single.c +++ b/drivers/pinctrl/pinctrl-single.c @@ -519,7 +519,7 @@ static const struct pinmux_ops pcs_pinmux_ops = { .get_functions_count = pcs_get_functions_count, .get_function_name = pcs_get_function_name, .get_function_groups = pcs_get_function_groups, - .set_mux = pcs_sex_mux, + .set_mux = pcs_set_mux, .gpio_request_enable = pcs_request_gpio, };