From patchwork Mon Mar 26 12:51:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 7466 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 8560023E12 for ; Mon, 26 Mar 2012 12:51:37 +0000 (UTC) Received: from mail-yw0-f52.google.com (mail-yw0-f52.google.com [209.85.213.52]) by fiordland.canonical.com (Postfix) with ESMTP id 55915A18897 for ; Mon, 26 Mar 2012 12:51:37 +0000 (UTC) Received: by yhpp61 with SMTP id p61so4597149yhp.11 for ; Mon, 26 Mar 2012 05:51:36 -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 :mime-version:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references:x-gm-message-state; bh=H7Y0OqHrYJuzeJdlh4htXwMTx/4oxLIbWiK9Fyf5FNY=; b=c7er2a4gs/k9uVld4odcdym9/KMlqXrnAvz9MrSLyH9JffMAefr0+enMV2doeCL2cB GKrlfcTAIoNH7KTlPyGrrpCr4yAcxePvV0RaIAj8ziZz+p3hG/PAJepnJ78Y2UQ1uTOz 5W5Za9qBu0RhR2rT90vuBdghnkn5sG0dH/Wpq92+vQFN6iKOmEjoFy7dyApunGGHSga9 oXQuzxzLSnvUTkMhOFqoBQBrOSQEIIrZDP4LtvTZGLPQPbc9yQfIFFGDOTN2oVK+GGfc zT8FPVX4xxfY1QfWVbdPheCcwg3cjuq6caaXR2IsCM0LzDzJv0dqDqYPMMjukQ7FCuDW vKNQ== Received: by 10.50.46.164 with SMTP id w4mr5494307igm.54.1332766296634; Mon, 26 Mar 2012 05:51:36 -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.231.5.205 with SMTP id 13csp18469ibw; Mon, 26 Mar 2012 05:51:35 -0700 (PDT) Received: by 10.180.107.101 with SMTP id hb5mr21327059wib.3.1332766290196; Mon, 26 Mar 2012 05:51:30 -0700 (PDT) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by mx.google.com with ESMTPS id x39si16011420weq.128.2012.03.26.05.51.29 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Mar 2012 05:51:30 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.212.178 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) client-ip=209.85.212.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.212.178 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) smtp.mail=daniel.lezcano@linaro.org Received: by wibhq7 with SMTP id hq7so3520272wib.13 for ; Mon, 26 Mar 2012 05:51:29 -0700 (PDT) MIME-Version: 1.0 Received: by 10.180.85.70 with SMTP id f6mr18512310wiz.5.1332766289684; Mon, 26 Mar 2012 05:51:29 -0700 (PDT) Received: from localhost.localdomain (AToulouse-159-1-37-30.w92-134.abo.wanadoo.fr. [92.134.76.30]) by mx.google.com with ESMTPS id b3sm40713855wib.4.2012.03.26.05.51.28 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Mar 2012 05:51:29 -0700 (PDT) From: Daniel Lezcano To: lenb@kernel.org Cc: linaro-dev@lists.linaro.org, patches@linaro.org, linux-pm@lists.linux-foundation.org Subject: [PATCH 3/3] cpuidle: remove unused 'governor_data' field Date: Mon, 26 Mar 2012 14:51:28 +0200 Message-Id: <1332766288-30412-3-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1332766288-30412-1-git-send-email-daniel.lezcano@linaro.org> References: <1332766288-30412-1-git-send-email-daniel.lezcano@linaro.org> X-Gm-Message-State: ALoCoQnhiIg5iGbg+6oaflmhb8O+P0V53SvK5/xqoVWmlcNBmkfi4kcMujqQwGR44acZ4BwVRtyw 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 f7f1d90..f3ebbba 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h @@ -98,7 +98,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);