summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZixun LI <[email protected]>2024-07-25 17:31:55 +0200
committerMattijs Korpershoek <[email protected]>2024-08-06 14:58:14 +0200
commit9cfee49022e2f22ca7074d423bd23a610ed652f4 (patch)
tree8fc4a5a7b008aa212f6028ba68a01a98ad0f951e
parent6f4c31c2b658358628b5b0fa801f55c7477c7585 (diff)
usb: gadget: atmel: Sort includes
Sort includes in alphabetical order. Signed-off-by: Zixun LI <[email protected]> Reviewed-by: Marek Vasut <[email protected]> Reviewed-by: Mattijs Korpershoek <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mattijs Korpershoek <[email protected]>
-rw-r--r--drivers/usb/gadget/atmel_usba_udc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c
index f99553df8d4..5f78251fdbb 100644
--- a/drivers/usb/gadget/atmel_usba_udc.c
+++ b/drivers/usb/gadget/atmel_usba_udc.c
@@ -7,16 +7,16 @@
* Bo Shen <[email protected]>
*/
-#include <linux/bitops.h>
-#include <linux/errno.h>
+#include <malloc.h>
#include <asm/gpio.h>
#include <asm/hardware.h>
+#include <linux/bitops.h>
+#include <linux/errno.h>
#include <linux/list.h>
#include <linux/printk.h>
#include <linux/usb/ch9.h>
#include <linux/usb/gadget.h>
#include <linux/usb/atmel_usba_udc.h>
-#include <malloc.h>
#include "atmel_usba_udc.h"