From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751517Ab2HGEkg (ORCPT ); Tue, 7 Aug 2012 00:40:36 -0400 Received: from mail-yw0-f46.google.com ([209.85.213.46]:60039 "EHLO mail-yw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750727Ab2HGEke (ORCPT ); Tue, 7 Aug 2012 00:40:34 -0400 Date: Mon, 06 Aug 2012 21:40:32 -0700 (PDT) Message-ID: <87y5lrtiv6.wl%kuninori.morimoto.gx@renesas.com> From: Kuninori Morimoto To: Zhang Rui Cc: linux-next , Linux Kernel Mailing List , Amit Kachhap , guenter.roeck@ericsson.com, akpm@linux-foundation.org Subject: Re: thermal patches in linux-next In-Reply-To: <1344308038.1682.637.camel@rui.sh.intel.com> References: <1344308038.1682.637.camel@rui.sh.intel.com> User-Agent: Wanderlust/2.14.0 Emacs/23.3 Mule/6.0 MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Zhang Thank you for your hard work > I just created a git tree for catching all thermal changes. > http://git.kernel.org/?p=linux/kernel/git/rzhang/linux.git;a=summary > and I also created the next branch, which I'd like to be set for > linux-next inclusion, but don't know how. > > And, I just saw that there are a couple of thermal patches in > linux-next, which I think it would be better if they can be re-based on > my next branch first. > For Guenter's and Kuninori's patch, I can take them directly, with few > changes. Thank you. I tried merge your tree + linux-next/master , and tested it. My driver needs additional patch my driver on linux-next/master is 6d0c7e61d36a3b72e19d9c2d31bf36d11c57ed57. additional patch is ======================================================================== Subject: [PATCH] thermal: rcaar_thermal: tidyup thermal_zone_device_register() parameter From: Kuninori Morimoto Date: Tue, 7 Aug 2012 13:32:14 +0900 c56f5c0342dfee11a1a13d2f5bb7618de5b17590 (Thermal: Make Thermal trip points writeable) added "mask", and 062f7fed5c79b3d2f7274fcd6f05f8c8f2fa5674 (Thermal: Remove tc1/tc2 in generic thermal layer.) removed tc1/tc2 from thermal_zone_device_register() This patch tidyup rcar_thereml driver. Signed-off-by: Kuninori Morimoto --- drivers/thermal/rcar_thermal.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 2496b4f..f7a1b57 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -210,8 +210,8 @@ static int rcar_thermal_probe(struct platform_device *pdev) goto error_free_priv; } - zone = thermal_zone_device_register("rcar_thermal", 0, priv, - &rcar_thermal_zone_ops, 0, 0, 0, 0); + zone = thermal_zone_device_register("rcar_thermal", 0, 0, priv, + &rcar_thermal_zone_ops, 0, 0); if (IS_ERR(zone)) { dev_err(&pdev->dev, "thermal zone device is NULL\n"); ret = PTR_ERR(zone); -- 1.7.5.4 ======================================================================== Best regards --- Kuninori Morimoto