From patchwork Wed Sep 19 17:22:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 11510 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id F0D931B4E05 for ; Wed, 19 Sep 2012 17:22:58 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 32FA2A1BC26 for ; Wed, 19 Sep 2012 17:22:58 +0000 (UTC) Received: by mail-iy0-f180.google.com with SMTP id j25so938805iaf.11 for ; Wed, 19 Sep 2012 10:22:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=NwlpzmaaXmS29b4CekMh/lV/RKO+w6ZEtxjgki1YaZM=; b=ijnH8Yg3Wm1ZGpi5hTe9U9jK/SRoTUk5BkI1ioQbwX/NxWVeNwidRmlvWwTeYFZ4Bs DL+WvXrGhitzykMofQdg7MHRlecdlUgJuqxKPIGgnu7teD0gQodWQCWZsOldsWsCAPwf j8MEhzuuwa8x6Bt2O5UW6sG+wMdLQBc6sRYE/yWQ0ouf/EK6ZnFwJr7VgmSldRX5HlUA Hl8yYxfs14+cutbQoyfIp1QtgSJjSaYFB8+ryg+kIIhak65NjPns0CPDBExTKVO4B1g4 czf9A0MQQuEbsxyIC9XLBpuM2/wc7vZ8tIKqD2HlN37uEMdUeYXuB6nrTX5/UyF3PuKx RvmA== Received: by 10.50.184.129 with SMTP id eu1mr3591857igc.0.1348075377991; Wed, 19 Sep 2012 10:22:57 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.184.232 with SMTP id ex8csp34739igc; Wed, 19 Sep 2012 10:22:57 -0700 (PDT) Received: by 10.216.205.101 with SMTP id i79mr2088001weo.209.1348075376512; Wed, 19 Sep 2012 10:22:56 -0700 (PDT) Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by mx.google.com with ESMTPS id n6si4230957wee.121.2012.09.19.10.22.56 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 19 Sep 2012 10:22:56 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.212.170 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) client-ip=209.85.212.170; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.212.170 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) smtp.mail=daniel.lezcano@linaro.org Received: by mail-wi0-f170.google.com with SMTP id hq12so6979610wib.1 for ; Wed, 19 Sep 2012 10:22:56 -0700 (PDT) Received: by 10.180.79.69 with SMTP id h5mr8066750wix.6.1348075376038; Wed, 19 Sep 2012 10:22:56 -0700 (PDT) Received: from localhost.localdomain (AToulouse-651-1-259-252.w109-214.abo.wanadoo.fr. [109.214.174.252]) by mx.google.com with ESMTPS id r9sm5977769wia.2.2012.09.19.10.22.54 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 19 Sep 2012 10:22:55 -0700 (PDT) From: Daniel Lezcano To: rjw@sisk.pl, lenb@kernel.org Cc: linux-pm@vger.kernel.org, linux-acpi@vger.kernel.org, patches@linaro.org, linaro-dev@lists.linaro.org Subject: [PATCH 3/3] cpuidle : remove trailing carriage return Date: Wed, 19 Sep 2012 19:22:49 +0200 Message-Id: <1348075369-16451-3-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1348075369-16451-1-git-send-email-daniel.lezcano@linaro.org> References: <1348075369-16451-1-git-send-email-daniel.lezcano@linaro.org> X-Gm-Message-State: ALoCoQl6JLSEsbKmKL28Y+29pjcmJTeQZpcNtoZgQeZUibVKsdVSgvmVEsbyKo9rc9Sx/ZX+OpZc This mindless patch is just about removing some trailing carriage returns. Signed-off-by: Daniel Lezcano --- drivers/cpuidle/driver.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c index 774d2cb..fc8bfc2 100644 --- a/drivers/cpuidle/driver.c +++ b/drivers/cpuidle/driver.c @@ -39,7 +39,6 @@ static void set_power_states(struct cpuidle_driver *drv) drv->states[i].power_usage = -1 - i; } - /** * cpuidle_register_driver - registers a driver * @drv: the driver @@ -65,7 +64,6 @@ int cpuidle_register_driver(struct cpuidle_driver *drv) return 0; } - EXPORT_SYMBOL_GPL(cpuidle_register_driver); /** @@ -93,5 +91,4 @@ void cpuidle_unregister_driver(struct cpuidle_driver *drv) cpuidle_curr_driver = NULL; spin_unlock(&cpuidle_driver_lock); } - EXPORT_SYMBOL_GPL(cpuidle_unregister_driver);