i2c: st: add include for pinctrl

The driver uses pinctrl directly and thus should include the appropriate
header. Sort the headers while we are here to have a better view what is
included and what is not.

Reported-by: Pascal Huerst <pascal.huerst@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>

Changed files
+7 -6
drivers
i2c
busses
+7 -6
drivers/i2c/busses/i2c-st.c
··· 10 * published by the Free Software Foundation. 11 */ 12 13 - #include <linux/module.h> 14 - #include <linux/platform_device.h> 15 - #include <linux/i2c.h> 16 #include <linux/clk.h> 17 - #include <linux/io.h> 18 #include <linux/delay.h> 19 - #include <linux/interrupt.h> 20 #include <linux/err.h> 21 - #include <linux/of.h> 22 #include <linux/of_address.h> 23 #include <linux/of_irq.h> 24 25 /* SSC registers */ 26 #define SSC_BRG 0x000
··· 10 * published by the Free Software Foundation. 11 */ 12 13 #include <linux/clk.h> 14 #include <linux/delay.h> 15 #include <linux/err.h> 16 + #include <linux/i2c.h> 17 + #include <linux/interrupt.h> 18 + #include <linux/io.h> 19 + #include <linux/module.h> 20 #include <linux/of_address.h> 21 #include <linux/of_irq.h> 22 + #include <linux/of.h> 23 + #include <linux/pinctrl/consumer.h> 24 + #include <linux/platform_device.h> 25 26 /* SSC registers */ 27 #define SSC_BRG 0x000