staging: wlang-ng: avoid new typedef: hfa384x_pdr_end_of_pda_t

This patch fixes the following checkpatch.pl warning in hfa384x.h:
WARNING: do not add new typedefs

It applies for typedef hfa384x_pdr_end_of_pda_t

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sergio Paracuellos 2016-09-28 20:20:12 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель 5a4a58236a
Коммит b26ce5f686
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1086,9 +1086,9 @@ struct hfa384x_pdr_hfa3861_manf_testi {
u16 value[30]; u16 value[30];
} __packed; } __packed;
typedef struct hfa384x_end_of_pda { struct hfa384x_pdr_end_of_pda {
u16 crc; u16 crc;
} __packed hfa384x_pdr_end_of_pda_t; } __packed;
typedef struct hfa384x_pdrec { typedef struct hfa384x_pdrec {
u16 len; /* in words */ u16 len; /* in words */
@ -1127,7 +1127,7 @@ typedef struct hfa384x_pdrec {
struct hfa384x_pdr_hfo_delay hfo_delay; struct hfa384x_pdr_hfo_delay hfo_delay;
struct hfa384x_pdr_hfa3861_manf_testsp hfa3861_manf_testsp; struct hfa384x_pdr_hfa3861_manf_testsp hfa3861_manf_testsp;
struct hfa384x_pdr_hfa3861_manf_testi hfa3861_manf_testi; struct hfa384x_pdr_hfa3861_manf_testi hfa3861_manf_testi;
hfa384x_pdr_end_of_pda_t end_of_pda; struct hfa384x_pdr_end_of_pda end_of_pda;
} data; } data;
} __packed hfa384x_pdrec_t; } __packed hfa384x_pdrec_t;