diff mbox series

[3/4] usb: typec: hd3ss3220: Sort header files

Message ID 20221209155623.29147-4-biju.das.jz@bp.renesas.com (mailing list archive)
State Superseded
Headers show
Series Add Polling support for role detection with HD3SS3220 | expand

Commit Message

Biju Das Dec. 9, 2022, 3:56 p.m. UTC
This patch sorts the header files alphabetically.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 drivers/usb/typec/hd3ss3220.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Greg Kroah-Hartman Dec. 9, 2022, 4:16 p.m. UTC | #1
On Fri, Dec 09, 2022 at 03:56:22PM +0000, Biju Das wrote:
> This patch sorts the header files alphabetically.

This says what you are doing, but not why.

Why is this needed?  What does this fix?  This is no requirement of USB
code that I know of.

thanks,

greg k-h
Biju Das Dec. 9, 2022, 4:49 p.m. UTC | #2
Hi Greg,

Thanks for the feedback.

> Subject: Re: [PATCH 3/4] usb: typec: hd3ss3220: Sort header files
> 
> On Fri, Dec 09, 2022 at 03:56:22PM +0000, Biju Das wrote:
> > This patch sorts the header files alphabetically.
> 
> This says what you are doing, but not why.
> 
> Why is this needed?  What does this fix?  This is no requirement of USB
> code that I know of.

Previously I got some feedback from other subsystem maintainers, to sort the
headers alphabetically. Based on that, I thought of doing same here.

I would like to drop this patch, as there is no requirement of USB code to
sort the headers.

Cheers,
Biju
Geert Uytterhoeven Dec. 15, 2022, 10:05 a.m. UTC | #3
Hi Greg,

On Fri, Dec 9, 2022 at 5:16 PM Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
> On Fri, Dec 09, 2022 at 03:56:22PM +0000, Biju Das wrote:
> > This patch sorts the header files alphabetically.
>
> This says what you are doing, but not why.
>
> Why is this needed?  What does this fix?  This is no requirement of USB
> code that I know of.

... to avoid merge conflicts when adding/removing includes in future
patches.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds
Greg Kroah-Hartman Dec. 15, 2022, 11:44 a.m. UTC | #4
On Thu, Dec 15, 2022 at 11:05:13AM +0100, Geert Uytterhoeven wrote:
> Hi Greg,
> 
> On Fri, Dec 9, 2022 at 5:16 PM Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> > On Fri, Dec 09, 2022 at 03:56:22PM +0000, Biju Das wrote:
> > > This patch sorts the header files alphabetically.
> >
> > This says what you are doing, but not why.
> >
> > Why is this needed?  What does this fix?  This is no requirement of USB
> > code that I know of.
> 
> ... to avoid merge conflicts when adding/removing includes in future
> patches.

Then let's deal with that then, again, this isn't a real issue, sorry.

greg k-h
diff mbox series

Patch

diff --git a/drivers/usb/typec/hd3ss3220.c b/drivers/usb/typec/hd3ss3220.c
index c24bbccd14f9..666a93f7ec65 100644
--- a/drivers/usb/typec/hd3ss3220.c
+++ b/drivers/usb/typec/hd3ss3220.c
@@ -5,15 +5,15 @@ 
  * Copyright (C) 2019 Renesas Electronics Corp.
  */
 
-#include <linux/module.h>
+#include <linux/delay.h>
 #include <linux/i2c.h>
-#include <linux/usb/role.h>
-#include <linux/irqreturn.h>
 #include <linux/interrupt.h>
+#include <linux/irqreturn.h>
+#include <linux/module.h>
 #include <linux/regmap.h>
 #include <linux/slab.h>
+#include <linux/usb/role.h>
 #include <linux/usb/typec.h>
-#include <linux/delay.h>
 
 #define HD3SS3220_REG_CN_STAT_CTRL	0x09
 #define HD3SS3220_REG_GEN_CTRL		0x0A