From patchwork Mon Oct 29 17:25:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1664911 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 AC716DFB7A for ; Mon, 29 Oct 2012 17:25:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753428Ab2J2RZR (ORCPT ); Mon, 29 Oct 2012 13:25:17 -0400 Received: from oproxy9.bluehost.com ([69.89.24.6]:50491 "HELO oproxy9.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751596Ab2J2RZQ (ORCPT ); Mon, 29 Oct 2012 13:25:16 -0400 Received: (qmail 28780 invoked by uid 0); 29 Oct 2012 17:25:16 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by oproxy9.bluehost.com with SMTP; 29 Oct 2012 17:25:16 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References:Subject:CC:To:MIME-Version:From:Date:Message-ID; bh=+8wLyHlGMbp8ONbN5TyVE3AvRz7SILVjCtFUr3YgFyw=; b=UKGzs9ioSQF/2Io1kLHwtG7hfp8bz0bIstI5sYqz1MXbBABG94sU05jMrVYByAkOSlNP9/sI1ZYkSSy+gxEZfHWNJNSpEtXPGfUaXZhRVVM41J4m4Zk1qFFE5lwbjWea; Received: from [50.53.38.135] (port=52259 helo=[192.168.1.7]) by box742.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1TSt5Q-0006Gu-4H; Mon, 29 Oct 2012 11:25:16 -0600 Message-ID: <508EBBFF.2020803@xenotime.net> Date: Mon, 29 Oct 2012 10:25:19 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: =?ISO-8859-1?Q?Toralf_F=F6rster?= CC: linux-acpi@vger.kernel.org, Len Brown , "Rafael J. Wysocki" Subject: [PATCH] acpi: add newline in power.c message References: <508D7CF7.1070707@gmx.de> In-Reply-To: <508D7CF7.1070707@gmx.de> X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org From: Randy Dunlap Add newline to printk so that the message is on a line by itself and not merged with something unrelated to it. Signed-off-by: Randy Dunlap Reported-by: Toralf Förster Cc: Len Brown Cc: Rafael J. Wysocki --- drivers/acpi/power.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-37-rc3.orig/drivers/acpi/power.c +++ lnx-37-rc3/drivers/acpi/power.c @@ -473,7 +473,7 @@ int acpi_power_resource_register_device( return ret; no_power_resource: - printk(KERN_DEBUG PREFIX "Invalid Power Resource to register!"); + printk(KERN_DEBUG PREFIX "Invalid Power Resource to register!\n"); return -ENODEV; } EXPORT_SYMBOL_GPL(acpi_power_resource_register_device);