From patchwork Wed Jan 8 14:19:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Henriques X-Patchwork-Id: 308268 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id E2CEB2C0090 for ; Thu, 9 Jan 2014 01:20:11 +1100 (EST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1W0tzM-0004wN-Cx; Wed, 08 Jan 2014 14:20:08 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1W0tzE-0004tL-Ao for kernel-team@lists.ubuntu.com; Wed, 08 Jan 2014 14:20:00 +0000 Received: from bl16-213-157.dsl.telepac.pt ([188.81.213.157] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1W0tzE-0002wM-4O; Wed, 08 Jan 2014 14:20:00 +0000 From: Luis Henriques To: Len Brown Subject: [3.5.y.z extended stable] Patch "intel_idle: enable IVB Xeon support" has been added to staging queue Date: Wed, 8 Jan 2014 14:19:58 +0000 Message-Id: <1389190798-10860-1-git-send-email-luis.henriques@canonical.com> X-Mailer: git-send-email 1.8.3.2 X-Extended-Stable: 3.5 Cc: kernel-team@lists.ubuntu.com, Vinson Lee X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com This is a note to let you know that I have just added a patch titled intel_idle: enable IVB Xeon support to the linux-3.5.y-queue branch of the 3.5.y.z extended stable tree which can be found at: http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.5.y-queue If you, or anyone else, feels it should not be added to this tree, please reply to this email. For more information about the 3.5.y.z tree, see https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable Thanks. -Luis ------ From a0a8246bb05799188d70173c94929f4142a883e7 Mon Sep 17 00:00:00 2001 From: Len Brown Date: Wed, 26 Sep 2012 22:28:21 -0400 Subject: intel_idle: enable IVB Xeon support commit 23795e580cad5d6b73d47d51b9074ce3e58bf334 upstream. IVB Xeon currently shares the same parameters IVB client. Signed-off-by: Len Brown Cc: Vinson Lee Signed-off-by: Luis Henriques --- drivers/idle/intel_idle.c | 1 + 1 file changed, 1 insertion(+) -- 1.8.3.2 diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index 377ec9a..674e352 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -399,6 +399,7 @@ static const struct x86_cpu_id intel_idle_ids[] = { ICPU(0x2a, idle_cpu_snb), ICPU(0x2d, idle_cpu_snb), ICPU(0x3a, idle_cpu_ivb), + ICPU(0x3e, idle_cpu_ivb), {} }; MODULE_DEVICE_TABLE(x86cpu, intel_idle_ids);