Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754399AbbGFKYg (ORCPT ); Mon, 6 Jul 2015 06:24:36 -0400 Received: from mailout2.samsung.com ([203.254.224.25]:51202 "EHLO mailout2.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750985AbbGFKYe (ORCPT ); Mon, 6 Jul 2015 06:24:34 -0400 X-AuditID: cbfee61b-f79416d0000014c0-31-559a5760b3a9 Date: Mon, 06 Jul 2015 12:24:26 +0200 From: Lukasz Majewski To: Sascha Hauer Cc: linux-pm@vger.kernel.org, Zhang Rui , linux-kernel@vger.kernel.org, Eduardo Valentin Subject: Re: [PATCH 3/4] thermal: Use IS_ENABLED instead of #ifdef Message-id: <20150706122426.326f72f4@amdc2363> In-reply-to: <1436168777-10463-4-git-send-email-s.hauer@pengutronix.de> References: <1436168777-10463-1-git-send-email-s.hauer@pengutronix.de> <1436168777-10463-4-git-send-email-s.hauer@pengutronix.de> Organization: SPRC Poland X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFrrFLMWRmVeSWpSXmKPExsVy+t9jQd2E8FmhBg938VnMv3KN1eLyrjls Fp97jzBaPHnYx2bxd/smFgdWj52z7rJ7LN7zksmj/6+Bx+dNcgEsUVw2Kak5mWWpRfp2CVwZ rzZPZyn4LF1x8VoDewPjdrEuRk4OCQETiS0r/zFD2GISF+6tZ+ti5OIQEpjOKLHq+CN2COcN o8THebcYQapYBFQlJq1byQJiswnoSXy++5QJxBYR0JRYtGACM0gDs0Aro8SvjTvBGoQFnCQW LdzJBmLzAjXMf/2JFcTmFHCXOLhkLtSGZkaJ76d/gE3iF5CUaP/3A+omO4lznzawQzQLSvyY fA9sM7OAlsTmbU2sELa8xOY1b5knMArOQlI2C0nZLCRlCxiZVzGKphYkFxQnpeca6RUn5haX 5qXrJefnbmIEh/gz6R2MqxosDjEKcDAq8fBuqJsZKsSaWFZcmXuIUYKDWUmEt9pnVqgQb0pi ZVVqUX58UWlOavEhRmkOFiVx3pP5PqFCAumJJanZqakFqUUwWSYOTqkGxqBzH0/fWf72BYNb nXHfkhrjxfkBW488OVPzZVHoxf3cmpMM/wt3cPUoyEQde1V6bbHLLrlbLxsYi3e9nrpu+bkt klY7AjlNWubfs4t6n3195UevDu/J/FkBMw4WbjtQ1T/nTgxzceyq1hXHvFYxKWvyb7u/7lxV 6wOpj0fiP1/beUl3zfrzDxmUWIozEg21mIuKEwFCid96bQIAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3697 Lines: 124 Hi Sascha, > Use IS_ENABLED(CONFIG_THERMAL_EMULATION) to make the code more > readable and to get rid of the addtional #ifdef around the variable > definitions in thermal_zone_get_temp(). Reviewed-by: Lukasz Majewski > > Signed-off-by: Sascha Hauer > --- > drivers/thermal/thermal_core.c | 45 > ++++++++++++++++++------------------------ 1 file changed, 19 > insertions(+), 26 deletions(-) > > diff --git a/drivers/thermal/thermal_core.c > b/drivers/thermal/thermal_core.c index aa0a661..67296da 100644 > --- a/drivers/thermal/thermal_core.c > +++ b/drivers/thermal/thermal_core.c > @@ -477,11 +477,9 @@ static void handle_thermal_trip(struct > thermal_zone_device *tz, int trip) int thermal_zone_get_temp(struct > thermal_zone_device *tz, unsigned long *temp) { > int ret = -EINVAL; > -#ifdef CONFIG_THERMAL_EMULATION > int count; > unsigned long crit_temp = -1UL; > enum thermal_trip_type type; > -#endif > > if (!tz || IS_ERR(tz) || !tz->ops->get_temp) > goto exit; > @@ -489,25 +487,21 @@ int thermal_zone_get_temp(struct > thermal_zone_device *tz, unsigned long *temp) mutex_lock(&tz->lock); > > ret = tz->ops->get_temp(tz, temp); > -#ifdef CONFIG_THERMAL_EMULATION > - if (!tz->emul_temperature) > - goto skip_emul; > - > - for (count = 0; count < tz->trips; count++) { > - ret = tz->ops->get_trip_type(tz, count, &type); > - if (!ret && type == THERMAL_TRIP_CRITICAL) { > - ret = tz->ops->get_trip_temp(tz, count, > &crit_temp); > - break; > - } > - } > > - if (ret) > - goto skip_emul; > + if (IS_ENABLED(CONFIG_THERMAL_EMULATION) && > tz->emul_temperature) { > + for (count = 0; count < tz->trips; count++) { > + ret = tz->ops->get_trip_type(tz, count, > &type); > + if (!ret && type == THERMAL_TRIP_CRITICAL) { > + ret = tz->ops->get_trip_temp(tz, > count, > + &crit_temp); > + break; > + } > + } > > - if (*temp < crit_temp) > - *temp = tz->emul_temperature; > -skip_emul: > -#endif > + if (!ret && *temp < crit_temp) > + *temp = tz->emul_temperature; > + } > + > mutex_unlock(&tz->lock); > exit: > return ret; > @@ -847,7 +841,6 @@ policy_show(struct device *dev, struct > device_attribute *devattr, char *buf) return sprintf(buf, "%s\n", > tz->governor->name); } > > -#ifdef CONFIG_THERMAL_EMULATION > static ssize_t > emul_temp_store(struct device *dev, struct device_attribute *attr, > const char *buf, size_t count) > @@ -873,7 +866,6 @@ emul_temp_store(struct device *dev, struct > device_attribute *attr, return ret ? ret : count; > } > static DEVICE_ATTR(emul_temp, S_IWUSR, NULL, emul_temp_store); > -#endif/*CONFIG_THERMAL_EMULATION*/ > > static ssize_t > sustainable_power_show(struct device *dev, struct device_attribute > *devattr, @@ -1802,11 +1794,12 @@ struct thermal_zone_device > *thermal_zone_device_register(const char *type, goto unregister; > } > > -#ifdef CONFIG_THERMAL_EMULATION > - result = device_create_file(&tz->device, > &dev_attr_emul_temp); > - if (result) > - goto unregister; > -#endif > + if (IS_ENABLED(CONFIG_THERMAL_EMULATION)) { > + result = device_create_file(&tz->device, > &dev_attr_emul_temp); > + if (result) > + goto unregister; > + } > + > /* Create policy attribute */ > result = device_create_file(&tz->device, &dev_attr_policy); > if (result) -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/