From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752002AbbDQFXB (ORCPT ); Fri, 17 Apr 2015 01:23:01 -0400 Received: from metis.ext.pengutronix.de ([92.198.50.35]:60773 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751014AbbDQFWy (ORCPT ); Fri, 17 Apr 2015 01:22:54 -0400 Date: Fri, 17 Apr 2015 07:22:44 +0200 From: Sascha Hauer To: Brian Norris Cc: Eduardo Valentin , Stephen Warren , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Mikko Perttunen , linux-mediatek@lists.infradead.org, kernel@pengutronix.de, Zhang Rui , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH 13/13] thermal: of: implement .set_trips for device tree thermal zones Message-ID: <20150417052244.GA6325@pengutronix.de> References: <1427385240-6086-1-git-send-email-s.hauer@pengutronix.de> <1427385240-6086-14-git-send-email-s.hauer@pengutronix.de> <20150407024307.GH4648@localhost.localdomain> <20150413063018.GT9742@pengutronix.de> <20150415175936.GR32500@ld-irv-0074> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150415175936.GR32500@ld-irv-0074> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-IRC: #ptxdist @freenode X-Accept-Language: de,en X-Accept-Content-Type: text/plain X-Uptime: 07:21:06 up 31 days, 17:12, 62 users, load average: 0.05, 0.08, 0.12 User-Agent: Mutt/1.5.21 (2010-09-15) X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::c0 X-SA-Exim-Mail-From: sha@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Brian, On Wed, Apr 15, 2015 at 10:59:36AM -0700, Brian Norris wrote: > On Mon, Apr 13, 2015 at 08:30:18AM +0200, Sascha Hauer wrote: > > On Mon, Apr 06, 2015 at 07:43:08PM -0700, Eduardo Valentin wrote: > > > On Thu, Mar 26, 2015 at 04:54:00PM +0100, Sascha Hauer wrote: > > > > Signed-off-by: Sascha Hauer > > > > --- > > > > drivers/thermal/of-thermal.c | 12 ++++++++++++ > > > > include/linux/thermal.h | 1 + > > > > 2 files changed, 13 insertions(+) > > > > > > Can you please include at least one user of this call back in your patch > > > series? > > > > Thanks for the comments on this series. I'll address them in the next > > round. The user for this callback is not yet ready to be posted. I'll > > try and move this patch to the end of the series so that the series can > > be applied without this one. > > I'm actually interested in this patch, as I am developing a thermal > sensor driver that has hardware-assisted temperature-trip interrupts. > I'm testing out your patches now, and will probably end up using them on > my local tree. With help of this (and a few other changes I need to > make), my driver should be ready to post soon. > > So, I'll try to post my driver soon as an example, if you'd like. I'd > also appreciate a CC on any future revisions, if you don't mind. I'm > subscribed to the list, but it's not always easy to pick out the signal > from the noise. Sure, I'll add you to Cc next round. I'm halfway through updating this series according to the comments I received, but got distracted. I hope to send an update next week. Sascha -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | From mboxrd@z Thu Jan 1 00:00:00 1970 From: s.hauer@pengutronix.de (Sascha Hauer) Date: Fri, 17 Apr 2015 07:22:44 +0200 Subject: [PATCH 13/13] thermal: of: implement .set_trips for device tree thermal zones In-Reply-To: <20150415175936.GR32500@ld-irv-0074> References: <1427385240-6086-1-git-send-email-s.hauer@pengutronix.de> <1427385240-6086-14-git-send-email-s.hauer@pengutronix.de> <20150407024307.GH4648@localhost.localdomain> <20150413063018.GT9742@pengutronix.de> <20150415175936.GR32500@ld-irv-0074> Message-ID: <20150417052244.GA6325@pengutronix.de> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi Brian, On Wed, Apr 15, 2015 at 10:59:36AM -0700, Brian Norris wrote: > On Mon, Apr 13, 2015 at 08:30:18AM +0200, Sascha Hauer wrote: > > On Mon, Apr 06, 2015 at 07:43:08PM -0700, Eduardo Valentin wrote: > > > On Thu, Mar 26, 2015 at 04:54:00PM +0100, Sascha Hauer wrote: > > > > Signed-off-by: Sascha Hauer > > > > --- > > > > drivers/thermal/of-thermal.c | 12 ++++++++++++ > > > > include/linux/thermal.h | 1 + > > > > 2 files changed, 13 insertions(+) > > > > > > Can you please include at least one user of this call back in your patch > > > series? > > > > Thanks for the comments on this series. I'll address them in the next > > round. The user for this callback is not yet ready to be posted. I'll > > try and move this patch to the end of the series so that the series can > > be applied without this one. > > I'm actually interested in this patch, as I am developing a thermal > sensor driver that has hardware-assisted temperature-trip interrupts. > I'm testing out your patches now, and will probably end up using them on > my local tree. With help of this (and a few other changes I need to > make), my driver should be ready to post soon. > > So, I'll try to post my driver soon as an example, if you'd like. I'd > also appreciate a CC on any future revisions, if you don't mind. I'm > subscribed to the list, but it's not always easy to pick out the signal > from the noise. Sure, I'll add you to Cc next round. I'm halfway through updating this series according to the comments I received, but got distracted. I hope to send an update next week. Sascha -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |