From patchwork Wed Dec 12 11:54:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bastian Hecht X-Patchwork-Id: 1865681 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 821F0DF2EE for ; Wed, 12 Dec 2012 11:58:00 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tikto-0006tv-ST; Wed, 12 Dec 2012 11:54:52 +0000 Received: from mail-ea0-f177.google.com ([209.85.215.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Tiktk-0006t6-Bk for linux-arm-kernel@lists.infradead.org; Wed, 12 Dec 2012 11:54:49 +0000 Received: by mail-ea0-f177.google.com with SMTP id c10so194921eaa.36 for ; Wed, 12 Dec 2012 03:54:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=D81o3R71FxJmFXOV/aYe+NyKu8e9bV1+J4DlbPd25Ds=; b=pEl8Fo9BqafgMIi/x9jRM6bek+PaxAOho3wbAzmncvj+lG28nsqFkIX4ChtCQLe/MC a/mrrUIxPkdil5xc2Q8fstTPzlJB9LBHgeIYOoacG2OHeINTr7IMx8oAAAcvOZjwQykK t8uVBPafKQY1DJpQvmFynlyIt/Fyp1AKd8ZDBALBhM3zB+faVVr5+QFcWECF8RGdiElT 0AXusbPo8BG44uGGUs7LQJnZX8p+8NZ+O1n9znTqQ+sU9aqi8tKa0t3ozay14N2O71TN zwwY8pfbtu+xMQAN4VCEIIS/cAcDuSHHjUUvQj5uG9sum+QMKYOvkkM92OjNU1EEXiZO H8cQ== Received: by 10.14.223.135 with SMTP id v7mr2223796eep.41.1355313286293; Wed, 12 Dec 2012 03:54:46 -0800 (PST) Received: from localhost.localdomain (p4FD23602.dip.t-dialin.net. [79.210.54.2]) by mx.google.com with ESMTPS id w3sm55551445eel.17.2012.12.12.03.54.44 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 12 Dec 2012 03:54:45 -0800 (PST) From: Bastian Hecht To: spi-devel-general@lists.sourceforge.net, Grant Likely Subject: [PATCH 1/4 v2] spi: sh-msiof: Remove unneeded clock name Date: Wed, 12 Dec 2012 12:54:46 +0100 Message-Id: <1355313289-29769-1-git-send-email-hechtb+renesas@gmail.com> X-Mailer: git-send-email 1.7.9.5 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121212_065448_567658_32EAC3A7 X-CRM114-Status: GOOD ( 12.34 ) X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.215.177 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (hechtb[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Magnus Damm , "linux-arm-kernel@lists.infradead.org" , linux-sh@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Bastian Hecht clk_get() no longer needs a character string for associating the right clock as this is done via the device struct now. Signed-off-by: Bastian Hecht --- v2: no changes drivers/spi/spi-sh-msiof.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index 1f466bc..96358d0 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c @@ -597,7 +597,6 @@ static int sh_msiof_spi_probe(struct platform_device *pdev) struct resource *r; struct spi_master *master; struct sh_msiof_spi_priv *p; - char clk_name[16]; int i; int ret; @@ -614,10 +613,9 @@ static int sh_msiof_spi_probe(struct platform_device *pdev) p->info = pdev->dev.platform_data; init_completion(&p->done); - snprintf(clk_name, sizeof(clk_name), "msiof%d", pdev->id); - p->clk = clk_get(&pdev->dev, clk_name); + p->clk = clk_get(&pdev->dev, NULL); if (IS_ERR(p->clk)) { - dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name); + dev_err(&pdev->dev, "cannot get clock\n"); ret = PTR_ERR(p->clk); goto err1; }