staging: wlang-ng: avoid new typedef: hfa384x_pdr_pcb_partnum_t
This patch fixes the following checkpatch.pl warning in hfa384x.h: WARNING: do not add new typedefs It applies for typedef hfa384x_pdr_pcb_partnum_t Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3e4180c3e8
commit
e0696aa81b
@ -929,9 +929,9 @@ union hfa384x_usbin {
|
|||||||
*--------------------------------------------------------------------
|
*--------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef struct hfa384x_pdr_pcb_partnum {
|
struct hfa384x_pdr_pcb_partnum {
|
||||||
u8 num[8];
|
u8 num[8];
|
||||||
} __packed hfa384x_pdr_pcb_partnum_t;
|
} __packed;
|
||||||
|
|
||||||
typedef struct hfa384x_pdr_pcb_tracenum {
|
typedef struct hfa384x_pdr_pcb_tracenum {
|
||||||
u8 num[8];
|
u8 num[8];
|
||||||
@ -1094,7 +1094,7 @@ typedef struct hfa384x_pdrec {
|
|||||||
u16 len; /* in words */
|
u16 len; /* in words */
|
||||||
u16 code;
|
u16 code;
|
||||||
union pdr {
|
union pdr {
|
||||||
hfa384x_pdr_pcb_partnum_t pcb_partnum;
|
struct hfa384x_pdr_pcb_partnum pcb_partnum;
|
||||||
hfa384x_pdr_pcb_tracenum_t pcb_tracenum;
|
hfa384x_pdr_pcb_tracenum_t pcb_tracenum;
|
||||||
hfa384x_pdr_nic_serial_t nic_serial;
|
hfa384x_pdr_nic_serial_t nic_serial;
|
||||||
hfa384x_pdr_mkk_measurements_t mkk_measurements;
|
hfa384x_pdr_mkk_measurements_t mkk_measurements;
|
||||||
|
Loading…
Reference in New Issue
Block a user