From patchwork Tue Dec 18 17:26:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Youquan Song X-Patchwork-Id: 1890151 Return-Path: X-Original-To: patchwork-linux-acpi@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 103ECDF23A for ; Tue, 18 Dec 2012 05:21:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754443Ab2LRFUI (ORCPT ); Tue, 18 Dec 2012 00:20:08 -0500 Received: from mga02.intel.com ([134.134.136.20]:22911 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754380Ab2LRFUD (ORCPT ); Tue, 18 Dec 2012 00:20:03 -0500 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 17 Dec 2012 21:20:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.84,305,1355126400"; d="scan'208";a="258689031" Received: from linux-youquan.bj.intel.com (HELO localhost.localdomain) ([10.238.155.107]) by orsmga002.jf.intel.com with ESMTP; 17 Dec 2012 21:19:59 -0800 From: Youquan Song To: linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org, lenb@kernel.org, "Rafael J. Wysocki" Cc: Youquan Song , Youquan Song Subject: [PATCH] x86,idle: pr_debug information need separated Date: Tue, 18 Dec 2012 12:26:02 -0500 Message-Id: <1355851562-28407-1-git-send-email-youquan.song@intel.com> X-Mailer: git-send-email 1.6.4.2 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org When debug kernel, the the below information is found: intel_idle: unaware of model 0x1a MWAIT 4 please contact lenb@kernel.orgACPI: Device input0 -> No ACPI support so this patch separates it. Signed-off-by: Youquan Song --- drivers/idle/intel_idle.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index b0f6b4c..eae6e3b 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -518,7 +518,7 @@ static int intel_idle_cpuidle_driver_init(void) if (*cpuidle_state_table[cstate].name == '\0') pr_debug(PREFIX "unaware of model 0x%x" " MWAIT %d please" - " contact lenb@kernel.org", + " contact lenb@kernel.org\n", boot_cpu_data.x86_model, cstate); continue; }