* [PATCH v2 4/9] iio/drivers/as73211: Use HZ macros [not found] <20210224144222.23762-1-daniel.lezcano@linaro.org> @ 2021-02-24 14:42 ` Daniel Lezcano 2021-03-14 16:59 ` Jonathan Cameron 2021-02-24 14:42 ` [PATCH v2 6/9] iio/drivers/hid-sensor: " Daniel Lezcano 1 sibling, 1 reply; 4+ messages in thread From: Daniel Lezcano @ 2021-02-24 14:42 UTC (permalink / raw) To: rafael, andriy.shevchenko Cc: linux-kernel, Christian Eggers, Jonathan Cameron, Lars-Peter Clausen, Peter Meerwald-Stadler, open list:AMS AS73211 DRIVER HZ unit conversion macros are available in units.h, use them and remove the duplicate definition. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Reviewed-by: Christian Eggers <ceggers@arri.de> --- drivers/iio/light/as73211.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/iio/light/as73211.c b/drivers/iio/light/as73211.c index 7b32dfaee9b3..3ba2378df3dd 100644 --- a/drivers/iio/light/as73211.c +++ b/drivers/iio/light/as73211.c @@ -24,8 +24,7 @@ #include <linux/module.h> #include <linux/mutex.h> #include <linux/pm.h> - -#define HZ_PER_KHZ 1000 +#include <linux/units.h> #define AS73211_DRV_NAME "as73211" -- 2.17.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 4/9] iio/drivers/as73211: Use HZ macros 2021-02-24 14:42 ` [PATCH v2 4/9] iio/drivers/as73211: Use HZ macros Daniel Lezcano @ 2021-03-14 16:59 ` Jonathan Cameron 0 siblings, 0 replies; 4+ messages in thread From: Jonathan Cameron @ 2021-03-14 16:59 UTC (permalink / raw) To: Daniel Lezcano Cc: rafael, andriy.shevchenko, linux-kernel, Christian Eggers, Lars-Peter Clausen, Peter Meerwald-Stadler, open list:AMS AS73211 DRIVER On Wed, 24 Feb 2021 15:42:14 +0100 Daniel Lezcano <daniel.lezcano@linaro.org> wrote: > HZ unit conversion macros are available in units.h, use them and > remove the duplicate definition. > > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> > Reviewed-by: Christian Eggers <ceggers@arri.de> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > --- > drivers/iio/light/as73211.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/iio/light/as73211.c b/drivers/iio/light/as73211.c > index 7b32dfaee9b3..3ba2378df3dd 100644 > --- a/drivers/iio/light/as73211.c > +++ b/drivers/iio/light/as73211.c > @@ -24,8 +24,7 @@ > #include <linux/module.h> > #include <linux/mutex.h> > #include <linux/pm.h> > - > -#define HZ_PER_KHZ 1000 > +#include <linux/units.h> > > #define AS73211_DRV_NAME "as73211" > ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 6/9] iio/drivers/hid-sensor: Use HZ macros [not found] <20210224144222.23762-1-daniel.lezcano@linaro.org> 2021-02-24 14:42 ` [PATCH v2 4/9] iio/drivers/as73211: Use HZ macros Daniel Lezcano @ 2021-02-24 14:42 ` Daniel Lezcano 2021-03-14 17:00 ` Jonathan Cameron 1 sibling, 1 reply; 4+ messages in thread From: Daniel Lezcano @ 2021-02-24 14:42 UTC (permalink / raw) To: rafael, andriy.shevchenko Cc: linux-kernel, Jonathan Cameron, Lars-Peter Clausen, Peter Meerwald-Stadler, open list:IIO SUBSYSTEM AND DRIVERS HZ unit conversion macros are available in units.h, use them and remove the duplicate definition. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> --- drivers/iio/common/hid-sensors/hid-sensor-attributes.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/iio/common/hid-sensors/hid-sensor-attributes.c b/drivers/iio/common/hid-sensors/hid-sensor-attributes.c index 442ff787f7af..dda3b67e494f 100644 --- a/drivers/iio/common/hid-sensors/hid-sensor-attributes.c +++ b/drivers/iio/common/hid-sensors/hid-sensor-attributes.c @@ -11,13 +11,12 @@ #include <linux/kernel.h> #include <linux/slab.h> #include <linux/time.h> +#include <linux/units.h> #include <linux/hid-sensor-hub.h> #include <linux/iio/iio.h> #include <linux/iio/sysfs.h> -#define HZ_PER_MHZ 1000000L - static struct { u32 usage_id; int unit; /* 0 for default others from HID sensor spec */ -- 2.17.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 6/9] iio/drivers/hid-sensor: Use HZ macros 2021-02-24 14:42 ` [PATCH v2 6/9] iio/drivers/hid-sensor: " Daniel Lezcano @ 2021-03-14 17:00 ` Jonathan Cameron 0 siblings, 0 replies; 4+ messages in thread From: Jonathan Cameron @ 2021-03-14 17:00 UTC (permalink / raw) To: Daniel Lezcano Cc: rafael, andriy.shevchenko, linux-kernel, Lars-Peter Clausen, Peter Meerwald-Stadler, open list:IIO SUBSYSTEM AND DRIVERS On Wed, 24 Feb 2021 15:42:16 +0100 Daniel Lezcano <daniel.lezcano@linaro.org> wrote: > HZ unit conversion macros are available in units.h, use them and > remove the duplicate definition. > > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > --- > drivers/iio/common/hid-sensors/hid-sensor-attributes.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/iio/common/hid-sensors/hid-sensor-attributes.c b/drivers/iio/common/hid-sensors/hid-sensor-attributes.c > index 442ff787f7af..dda3b67e494f 100644 > --- a/drivers/iio/common/hid-sensors/hid-sensor-attributes.c > +++ b/drivers/iio/common/hid-sensors/hid-sensor-attributes.c > @@ -11,13 +11,12 @@ > #include <linux/kernel.h> > #include <linux/slab.h> > #include <linux/time.h> > +#include <linux/units.h> > > #include <linux/hid-sensor-hub.h> > #include <linux/iio/iio.h> > #include <linux/iio/sysfs.h> > > -#define HZ_PER_MHZ 1000000L > - > static struct { > u32 usage_id; > int unit; /* 0 for default others from HID sensor spec */ ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-03-14 17:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20210224144222.23762-1-daniel.lezcano@linaro.org>
2021-02-24 14:42 ` [PATCH v2 4/9] iio/drivers/as73211: Use HZ macros Daniel Lezcano
2021-03-14 16:59 ` Jonathan Cameron
2021-02-24 14:42 ` [PATCH v2 6/9] iio/drivers/hid-sensor: " Daniel Lezcano
2021-03-14 17:00 ` Jonathan Cameron
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).