Message ID | 20200131061605.eNmN_VX0U%akpm@linux-foundation.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [001/118] lib/test_bitmap: correct test data offsets for 32-bit | expand |
On Thu, 2020-01-30 at 22:16 -0800, Andrew Morton wrote: > From: Akinobu Mita <akinobu.mita@gmail.com> > Subject: iwlwifi: use <linux/units.h> helpers > > This switches the iwlwifi driver to use celsius_to_kelvin() and > kelvin_to_celsius() in <linux/units.h>. > > Link: http://lkml.kernel.org/r/1576386975-7941-11-git-send-email-akinobu.mita@gmail.com > Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> > Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> > Acked-by: Luca Coelho <luciano.coelho@intel.com> > Cc: Kalle Valo <kvalo@codeaurora.org> > Cc: Johannes Berg <johannes.berg@intel.com> > Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com> > Cc: Luca Coelho <luciano.coelho@intel.com> > Cc: Amit Kucheria <amit.kucheria@verdurent.com> > Cc: Andy Shevchenko <andy@infradead.org> > Cc: Christoph Hellwig <hch@lst.de> > Cc: Daniel Lezcano <daniel.lezcano@linaro.org> > Cc: Darren Hart <dvhart@infradead.org> > Cc: Guenter Roeck <linux@roeck-us.net> > Cc: Hartmut Knaack <knaack.h@gmx.de> > Cc: Jean Delvare <jdelvare@suse.com> > Cc: Jens Axboe <axboe@fb.com> > Cc: Jonathan Cameron <jic23@kernel.org> > Cc: Jonathan Cameron <Jonathan.Cameron@huawei.com> > Cc: Keith Busch <kbusch@kernel.org> > Cc: Lars-Peter Clausen <lars@metafoo.de> > Cc: Peter Meerwald-Stadler <pmeerw@pmeerw.net> > Cc: Sagi Grimberg <sagi@grimberg.me> > Cc: Stanislaw Gruszka <sgruszka@redhat.com> > Cc: Sujith Thomas <sujith.thomas@intel.com> > Cc: Zhang Rui <rui.zhang@intel.com> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org> > --- Acked-by: Luca Coelho <luciano.coelho@intel.com> -- Cheers, Luca.
--- a/drivers/net/wireless/intel/iwlwifi/dvm/dev.h~iwlwifi-use-linux-unitsh-helpers +++ a/drivers/net/wireless/intel/iwlwifi/dvm/dev.h @@ -237,11 +237,6 @@ struct iwl_sensitivity_ranges { u16 nrg_th_cca; }; - -#define KELVIN_TO_CELSIUS(x) ((x)-273) -#define CELSIUS_TO_KELVIN(x) ((x)+273) - - /****************************************************************************** * * Functions implemented in core module which are forward declared here --- a/drivers/net/wireless/intel/iwlwifi/dvm/devices.c~iwlwifi-use-linux-unitsh-helpers +++ a/drivers/net/wireless/intel/iwlwifi/dvm/devices.c @@ -10,6 +10,8 @@ * *****************************************************************************/ +#include <linux/units.h> + /* * DVM device-specific data & functions */ @@ -345,7 +347,7 @@ static s32 iwl_temp_calib_to_offset(stru static void iwl5150_set_ct_threshold(struct iwl_priv *priv) { const s32 volt2temp_coef = IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF; - s32 threshold = (s32)CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD_LEGACY) - + s32 threshold = (s32)celsius_to_kelvin(CT_KILL_THRESHOLD_LEGACY) - iwl_temp_calib_to_offset(priv); priv->hw_params.ct_kill_threshold = threshold * volt2temp_coef; @@ -381,7 +383,7 @@ static void iwl5150_temperature(struct i vt = le32_to_cpu(priv->statistics.common.temperature); vt = vt / IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF + offset; /* now vt hold the temperature in Kelvin */ - priv->temperature = KELVIN_TO_CELSIUS(vt); + priv->temperature = kelvin_to_celsius(vt); iwl_tt_handler(priv); }