From patchwork Tue Nov 19 05:07:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3199931 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 57E2B9F243 for ; Tue, 19 Nov 2013 05:09:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 805602034F for ; Tue, 19 Nov 2013 05:09:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A4B3B2034B for ; Tue, 19 Nov 2013 05:09:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751529Ab3KSFJZ (ORCPT ); Tue, 19 Nov 2013 00:09:25 -0500 Received: from mail-pb0-f41.google.com ([209.85.160.41]:62410 "EHLO mail-pb0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750976Ab3KSFJZ (ORCPT ); Tue, 19 Nov 2013 00:09:25 -0500 Received: by mail-pb0-f41.google.com with SMTP id jt11so7866362pbb.28 for ; Mon, 18 Nov 2013 21:09:24 -0800 (PST) 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=x+PjdoA0YlImuwIJW+uCUWKzNuhofOMD3f4pmLliSHw=; b=IaXASGM89S9Y7tmarZzWW3a4woqMb6k7f37KjMFIIWM66ZjeGxOt0NCjcKW+eOiWW3 +zIIBWs458OeM8HrItYEdusx4/rK5w3RtrCze80uduxoOsxsh8qcwl60fpDW4qE/Juqw R1NXBViqUxHLetgczQTN0Dhq/ur8qd2o8BApX3fuS4Ps/gVHCGlFHS8yvrxxC4+vjhH7 +CaY9cqAnJCHn9Y53kzx/6Nw3fMtY3BFO1gyXtZKELu7OfeEq68qM08cXlLQusx2/TKg rPPQuCbVBJts9Tx75RYDSfjMMQ9myR+SlCMhiaJhV13ufe1g8QOQm058TjXUXfRL5kAF DoFw== X-Gm-Message-State: ALoCoQlpQC0+0YwI+FI2JHRC5ODHeXJS5+WjLcX/lRPuazzufXdY0vQL8o6HZBKvm4wszU5OCLmA X-Received: by 10.67.22.67 with SMTP id hq3mr6337962pad.132.1384837764527; Mon, 18 Nov 2013 21:09:24 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id gg10sm27396451pbc.46.2013.11.18.21.09.21 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 18 Nov 2013 21:09:23 -0800 (PST) From: Sachin Kamat To: linux-pm@vger.kernel.org Cc: cpufreq@vger.kernel.org, rjw@rjwysocki.net, viresh.kumar@linaro.org, sachin.kamat@linaro.org, Jonghwan Choi Subject: [PATCH 1/1] cpufreq: exynos: Fix line over 80 characters warning Date: Tue, 19 Nov 2013 10:37:19 +0530 Message-Id: <1384837639-9252-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 Silences the checkpatch warning introduced by commit 94aa44090eda ("cpufreq: exynos: Add missing static"). Signed-off-by: Sachin Kamat Cc: Jonghwan Choi Acked-by: Viresh Kumar --- drivers/cpufreq/exynos5250-cpufreq.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/cpufreq/exynos5250-cpufreq.c b/drivers/cpufreq/exynos5250-cpufreq.c index 8feda86fe42c..ebbcbb7e1926 100644 --- a/drivers/cpufreq/exynos5250-cpufreq.c +++ b/drivers/cpufreq/exynos5250-cpufreq.c @@ -144,7 +144,8 @@ static void set_apll(unsigned int new_index, } -static bool exynos5250_pms_change(unsigned int old_index, unsigned int new_index) +static bool exynos5250_pms_change(unsigned int old_index, + unsigned int new_index) { unsigned int old_pm = apll_freq_5250[old_index].mps >> 8; unsigned int new_pm = apll_freq_5250[new_index].mps >> 8;