Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: ppc4xx: Sort headers

Sort the headers in alphabetic order in order to ease
the maintenance for this part.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20240902103203.2476576-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Andy Shevchenko and committed by
Mark Brown
e8683688 7f9f8c59

+8 -8
+8 -8
drivers/spi/spi-ppc4xx.c
··· 20 20 * during SPI transfers by setting max_speed_hz via the device tree. 21 21 */ 22 22 23 - #include <linux/module.h> 24 - #include <linux/sched.h> 25 - #include <linux/slab.h> 23 + #include <linux/delay.h> 26 24 #include <linux/errno.h> 27 - #include <linux/wait.h> 28 - #include <linux/platform_device.h> 25 + #include <linux/interrupt.h> 26 + #include <linux/io.h> 27 + #include <linux/module.h> 29 28 #include <linux/of_address.h> 30 29 #include <linux/of_platform.h> 31 - #include <linux/interrupt.h> 32 - #include <linux/delay.h> 30 + #include <linux/platform_device.h> 31 + #include <linux/sched.h> 32 + #include <linux/slab.h> 33 + #include <linux/wait.h> 33 34 34 35 #include <linux/spi/spi.h> 35 36 #include <linux/spi/spi_bitbang.h> 36 37 37 - #include <linux/io.h> 38 38 #include <asm/dcr.h> 39 39 #include <asm/dcr-regs.h> 40 40