[v1,1/1] iio: adc: max11410: Use asm intead of asm-generic

Message ID 20230103144903.39905-1-andriy.shevchenko@linux.intel.com
State New
Headers
Series [v1,1/1] iio: adc: max11410: Use asm intead of asm-generic |

Commit Message

Andy Shevchenko Jan. 3, 2023, 2:49 p.m. UTC
  There is no point to specify asm-generic for the unaligned.h.
Drop the 'generic' suffix and move the inclusion to be after
the non-IIO linux/* ones.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/iio/adc/max11410.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Comments

Jonathan Cameron Jan. 8, 2023, 12:13 p.m. UTC | #1
On Tue,  3 Jan 2023 16:49:03 +0200
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> There is no point to specify asm-generic for the unaligned.h.
> Drop the 'generic' suffix and move the inclusion to be after
> the non-IIO linux/* ones.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Applied.

Thanks,

Jonathan

> ---
>  drivers/iio/adc/max11410.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/adc/max11410.c b/drivers/iio/adc/max11410.c
> index fdc9f03135b5..b74b689ee7de 100644
> --- a/drivers/iio/adc/max11410.c
> +++ b/drivers/iio/adc/max11410.c
> @@ -4,7 +4,6 @@
>   *
>   * Copyright 2022 Analog Devices Inc.
>   */
> -#include <asm-generic/unaligned.h>
>  #include <linux/bitfield.h>
>  #include <linux/delay.h>
>  #include <linux/device.h>
> @@ -16,6 +15,8 @@
>  #include <linux/regulator/consumer.h>
>  #include <linux/spi/spi.h>
>  
> +#include <asm/unaligned.h>
> +
>  #include <linux/iio/buffer.h>
>  #include <linux/iio/sysfs.h>
>  #include <linux/iio/trigger.h>
  

Patch

diff --git a/drivers/iio/adc/max11410.c b/drivers/iio/adc/max11410.c
index fdc9f03135b5..b74b689ee7de 100644
--- a/drivers/iio/adc/max11410.c
+++ b/drivers/iio/adc/max11410.c
@@ -4,7 +4,6 @@ 
  *
  * Copyright 2022 Analog Devices Inc.
  */
-#include <asm-generic/unaligned.h>
 #include <linux/bitfield.h>
 #include <linux/delay.h>
 #include <linux/device.h>
@@ -16,6 +15,8 @@ 
 #include <linux/regulator/consumer.h>
 #include <linux/spi/spi.h>
 
+#include <asm/unaligned.h>
+
 #include <linux/iio/buffer.h>
 #include <linux/iio/sysfs.h>
 #include <linux/iio/trigger.h>