From patchwork Thu Nov 10 23:58:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 5036 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 3CAD923E03 for ; Thu, 10 Nov 2011 23:58:17 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 325DDA1831E for ; Thu, 10 Nov 2011 23:58:17 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so5002552faa.11 for ; Thu, 10 Nov 2011 15:58:17 -0800 (PST) Received: by 10.152.104.1 with SMTP id ga1mr5598347lab.40.1320969496969; Thu, 10 Nov 2011 15:58:16 -0800 (PST) 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.152.40.7 with SMTP id t7cs29168lak; Thu, 10 Nov 2011 15:58:16 -0800 (PST) Received: by 10.216.139.9 with SMTP id b9mr1570533wej.80.1320969494952; Thu, 10 Nov 2011 15:58:14 -0800 (PST) Received: from smtp.smtpout.orange.fr (smtp07.smtpout.orange.fr. [80.12.242.129]) by mx.google.com with ESMTP id x15si5565187weq.70.2011.11.10.15.58.14; Thu, 10 Nov 2011 15:58:14 -0800 (PST) Received-SPF: neutral (google.com: 80.12.242.129 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) client-ip=80.12.242.129; Authentication-Results: mx.google.com; spf=neutral (google.com: 80.12.242.129 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) smtp.mail=daniel.lezcano@linaro.org Received: from monster.dhcp.lxc ([92.134.91.32]) by mwinf5d65 with ME id vbyD1h0010htGy403byEiA; Fri, 11 Nov 2011 00:58:14 +0100 From: Daniel Lezcano To: patches@linaro.org Subject: [PATCH 2/6] cpuidle : remove unused 'governor_data' field Date: Fri, 11 Nov 2011 00:58:09 +0100 Message-Id: <1320969493-27292-3-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1320969493-27292-1-git-send-email-daniel.lezcano@linaro.org> References: <1320969493-27292-1-git-send-email-daniel.lezcano@linaro.org> As far as I can see, this field is never used in the code. Signed-off-by: Daniel Lezcano --- include/linux/cpuidle.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index c904188..4c8fd37 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h @@ -95,7 +95,6 @@ struct cpuidle_device { struct list_head device_list; struct kobject kobj; struct completion kobj_unregister; - void *governor_data; }; DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices);