Re: [PATCH v3 06/27] staging: iio: resolver: ad2s1210: sort imports

From: Jonathan Cameron
Date: Sat Sep 30 2023 - 10:39:17 EST


On Fri, 29 Sep 2023 12:23:11 -0500
David Lechner <dlechner@xxxxxxxxxxxx> wrote:

> From: David Lechner <david@xxxxxxxxxxxxxx>
>
> From: David Lechner <dlechner@xxxxxxxxxxxx>
>
> There are quite a few imports and we will be adding more so it will
> make it easier to read if they are sorted.
>
> Signed-off-by: David Lechner <dlechner@xxxxxxxxxxxx>
Applied

> ---
>
> v3 changes:
> * This is a new patch split out from "staging: iio: resolver: ad2s1210:
> use devicetree to get fclkin"
>
> drivers/staging/iio/resolver/ad2s1210.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/staging/iio/resolver/ad2s1210.c b/drivers/staging/iio/resolver/ad2s1210.c
> index 28015322f562..832f86bf15e5 100644
> --- a/drivers/staging/iio/resolver/ad2s1210.c
> +++ b/drivers/staging/iio/resolver/ad2s1210.c
> @@ -4,16 +4,16 @@
> *
> * Copyright (c) 2010-2010 Analog Devices Inc.
> */
> -#include <linux/types.h>
> -#include <linux/mutex.h>
> +#include <linux/delay.h>
> #include <linux/device.h>
> +#include <linux/gpio/consumer.h>
> +#include <linux/module.h>
> +#include <linux/mutex.h>
> #include <linux/of.h>
> -#include <linux/spi/spi.h>
> #include <linux/slab.h>
> +#include <linux/spi/spi.h>
> #include <linux/sysfs.h>
> -#include <linux/delay.h>
> -#include <linux/gpio/consumer.h>
> -#include <linux/module.h>
> +#include <linux/types.h>
>
> #include <linux/iio/iio.h>
> #include <linux/iio/sysfs.h>
>