From patchwork Thu May 21 18:17:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shailendra Verma X-Patchwork-Id: 6458151 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.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 257E69F1CC for ; Thu, 21 May 2015 18:18:10 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 472E420513 for ; Thu, 21 May 2015 18:18:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5C62E2044C for ; Thu, 21 May 2015 18:18:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753908AbbEUSSH (ORCPT ); Thu, 21 May 2015 14:18:07 -0400 Received: from mail-pd0-f180.google.com ([209.85.192.180]:33241 "EHLO mail-pd0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752323AbbEUSSF (ORCPT ); Thu, 21 May 2015 14:18:05 -0400 Received: by pdbqa5 with SMTP id qa5so116358567pdb.0; Thu, 21 May 2015 11:18:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=uT6FuFd+Xs40RqjrX3JsV6fV/xGiBDpUbRmQ4nURfMI=; b=k4bGfSsolTEm+11OsWjzFmJeG+BsEVuDuWcRZjIDcxq04Iqqz4RGgNYxNYRdZNJm90 ZwyhQLND5Ywtw995PcCl0wUsocbnld0x0oaXgu7gWLwCt62kDMjQskv1vjq3V6eMgrUr gwGK7LSd7bLZT/qc66ACR+je+XAmMdekm4v3mJcRLXROphaCQ1q7fLoVpRh/NJTLAFbr Sgr/pwK1GsTdA1ysMjOZGWuejOuMzJWBWUeV9h8TDxinnTT8WtR6wJ3yWHlS1ZBSYKyJ 83XS4AqsnqIBitmosXKmB6KDYt+N75TL8hFYuYYI2mu9cOVM/8KWJ9DS56wmlKyUbQ7L XDPg== X-Received: by 10.70.129.106 with SMTP id nv10mr8116650pdb.160.1432232285054; Thu, 21 May 2015 11:18:05 -0700 (PDT) Received: from localhost.localdomain ([112.196.170.135]) by mx.google.com with ESMTPSA id oj10sm19924130pdb.38.2015.05.21.11.18.02 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 21 May 2015 11:18:04 -0700 (PDT) From: Shailendra Verma To: "Rafael J. Wysocki" , Viresh Kumar , linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Shailendra Verma Subject: [PATCH] cpufreq:cpufreq - Fix typo in comment. Date: Thu, 21 May 2015 23:47:51 +0530 Message-Id: <1432232271-3753-1-git-send-email-shailendra.capricorn@gmail.com> 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=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_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 Signed-off-by: Shailendra Verma --- drivers/cpufreq/cpufreq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 8ae655c..b4c7e0f 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -178,7 +178,7 @@ int cpufreq_generic_init(struct cpufreq_policy *policy, policy->cpuinfo.transition_latency = transition_latency; /* - * The driver only supports the SMP configuartion where all processors + * The driver only supports the SMP configuration where all processors * share the clock and voltage and clock. */ cpumask_setall(policy->cpus); @@ -1891,7 +1891,7 @@ static int __target_index(struct cpufreq_policy *policy, * Failed after setting to intermediate freq? Driver should have * reverted back to initial frequency and so should we. Check * here for intermediate_freq instead of get_intermediate, in - * case we have't switched to intermediate freq at all. + * case we haven't switched to intermediate freq at all. */ if (unlikely(retval && intermediate_freq)) { freqs.old = intermediate_freq;