On Wed, Apr 03, 2019 at 04:11:09PM +0200, Alexandre Belloni wrote: > Move linux/atmel_tc.h to the SoC specific folder include/soc/at91. > > Cc: Thierry Reding > Signed-off-by: Alexandre Belloni > --- > drivers/clocksource/tcb_clksrc.c | 2 +- > drivers/misc/atmel_tclib.c | 2 +- > drivers/pwm/pwm-atmel-tcb.c | 2 +- > include/{linux/atmel_tc.h => soc/at91/atmel_tcb.h} | 4 ++-- > 4 files changed, 5 insertions(+), 5 deletions(-) > rename include/{linux/atmel_tc.h => soc/at91/atmel_tcb.h} (99%) > > diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c > index 43f4d5c4d6fa..138a12090149 100644 > --- a/drivers/clocksource/tcb_clksrc.c > +++ b/drivers/clocksource/tcb_clksrc.c > @@ -11,7 +11,7 @@ > #include > #include > #include > -#include > +#include > > > /* > diff --git a/drivers/misc/atmel_tclib.c b/drivers/misc/atmel_tclib.c > index ac24a4bd63f7..194f774ab3a1 100644 > --- a/drivers/misc/atmel_tclib.c > +++ b/drivers/misc/atmel_tclib.c > @@ -1,4 +1,3 @@ > -#include > #include > #include > #include > @@ -10,6 +9,7 @@ > #include > #include > #include > +#include > > /* > * This is a thin library to solve the problem of how to portably allocate > diff --git a/drivers/pwm/pwm-atmel-tcb.c b/drivers/pwm/pwm-atmel-tcb.c > index 0d0f8376bc35..d7e92fd552e4 100644 > --- a/drivers/pwm/pwm-atmel-tcb.c > +++ b/drivers/pwm/pwm-atmel-tcb.c > @@ -17,7 +17,7 @@ > #include > #include > #include > -#include > +#include Sort this below the linux/* includes. With that: Acked-by: Thierry Reding