[PATCH] iio: addac: stx104: Replace bitops.h header inclusion with bits.h

William Breathitt Gray posted 1 patch 1 year ago
drivers/iio/addac/stx104.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] iio: addac: stx104: Replace bitops.h header inclusion with bits.h
Posted by William Breathitt Gray 1 year ago
The <linux/bitops.h> header is included in the stx104 driver so that we
can use the BIT() macro. This macro is actually defined in the
<linux/bits.h> header, so replace the <linux/bitops.h> header inclusion
with <linux/bits.h>.

Signed-off-by: William Breathitt Gray <william.gray@linaro.org>
---
 drivers/iio/addac/stx104.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/addac/stx104.c b/drivers/iio/addac/stx104.c
index 48a91a95e597..e45b70aa5bb7 100644
--- a/drivers/iio/addac/stx104.c
+++ b/drivers/iio/addac/stx104.c
@@ -3,7 +3,7 @@
  * IIO driver for the Apex Embedded Systems STX104
  * Copyright (C) 2016 William Breathitt Gray
  */
-#include <linux/bitops.h>
+#include <linux/bits.h>
 #include <linux/device.h>
 #include <linux/errno.h>
 #include <linux/gpio/driver.h>

base-commit: 87a1ff66a0e57d9022665d24793f31fc54de182d
-- 
2.39.2
Re: [PATCH] iio: addac: stx104: Replace bitops.h header inclusion with bits.h
Posted by Jonathan Cameron 1 year ago
On Sat, 18 Mar 2023 14:55:03 -0400
William Breathitt Gray <william.gray@linaro.org> wrote:

> The <linux/bitops.h> header is included in the stx104 driver so that we
> can use the BIT() macro. This macro is actually defined in the
> <linux/bits.h> header, so replace the <linux/bitops.h> header inclusion
> with <linux/bits.h>.
> 
> Signed-off-by: William Breathitt Gray <william.gray@linaro.org>

Applied to the togreg branch of iio.git and pushed out as testing
for all the normal reasons.

Thanks,

Jonathan

> ---
>  drivers/iio/addac/stx104.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/addac/stx104.c b/drivers/iio/addac/stx104.c
> index 48a91a95e597..e45b70aa5bb7 100644
> --- a/drivers/iio/addac/stx104.c
> +++ b/drivers/iio/addac/stx104.c
> @@ -3,7 +3,7 @@
>   * IIO driver for the Apex Embedded Systems STX104
>   * Copyright (C) 2016 William Breathitt Gray
>   */
> -#include <linux/bitops.h>
> +#include <linux/bits.h>
>  #include <linux/device.h>
>  #include <linux/errno.h>
>  #include <linux/gpio/driver.h>
> 
> base-commit: 87a1ff66a0e57d9022665d24793f31fc54de182d