Re: [PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style

2018-07-16 Thread John Whitmore
On Mon, Jul 16, 2018 at 10:42:05AM +0200, Greg KH wrote: > On Fri, Jul 13, 2018 at 09:12:39PM +0100, John Whitmore wrote: > > To clear a checkpatch issue removed the typedef of the structure > > TS_COMMON_INFO. > > > > This change removes the previous declaration, which defined two types, both >

Re: [PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style

2018-07-16 Thread John Whitmore
On Mon, Jul 16, 2018 at 10:42:05AM +0200, Greg KH wrote: > On Fri, Jul 13, 2018 at 09:12:39PM +0100, John Whitmore wrote: > > To clear a checkpatch issue removed the typedef of the structure > > TS_COMMON_INFO. > > > > This change removes the previous declaration, which defined two types, both >

Re: [PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style

2018-07-16 Thread Greg KH
On Fri, Jul 13, 2018 at 09:12:39PM +0100, John Whitmore wrote: > To clear a checkpatch issue removed the typedef of the structure > TS_COMMON_INFO. > > This change removes the previous declaration, which defined two types, both > TS_COMMON_INFO and a pointer type PTS_COMMON_INFO: > > typedef

Re: [PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style

2018-07-16 Thread Greg KH
On Fri, Jul 13, 2018 at 09:12:39PM +0100, John Whitmore wrote: > To clear a checkpatch issue removed the typedef of the structure > TS_COMMON_INFO. > > This change removes the previous declaration, which defined two types, both > TS_COMMON_INFO and a pointer type PTS_COMMON_INFO: > > typedef

[PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style

2018-07-13 Thread John Whitmore
To clear a checkpatch issue removed the typedef of the structure TS_COMMON_INFO. This change removes the previous declaration, which defined two types, both TS_COMMON_INFO and a pointer type PTS_COMMON_INFO: typedef struct _TS_COMMON_INFO { ... } TS_COMMON_INFO, *PTS_COMMON_INFO; The

[PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style

2018-07-13 Thread John Whitmore
To clear a checkpatch issue removed the typedef of the structure TS_COMMON_INFO. This change removes the previous declaration, which defined two types, both TS_COMMON_INFO and a pointer type PTS_COMMON_INFO: typedef struct _TS_COMMON_INFO { ... } TS_COMMON_INFO, *PTS_COMMON_INFO; The