Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0696aa8 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman
Browse files

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: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3e4180c3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -929,9 +929,9 @@ union hfa384x_usbin {
 *--------------------------------------------------------------------
 */

typedef struct hfa384x_pdr_pcb_partnum {
struct hfa384x_pdr_pcb_partnum {
	u8 num[8];
} __packed hfa384x_pdr_pcb_partnum_t;
} __packed;

typedef struct hfa384x_pdr_pcb_tracenum {
	u8 num[8];
@@ -1094,7 +1094,7 @@ typedef struct hfa384x_pdrec {
	u16 len;		/* in words */
	u16 code;
	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_nic_serial_t nic_serial;
		hfa384x_pdr_mkk_measurements_t mkk_measurements;