Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ath6kl: remove-typedef ST_READ_STATUS

remove-typedef -s ST_READ_STATUS \
"struct st_read_status" drivers/staging/ath6kl/

Tested-by: Naveen Singh <nsingh@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Luis R. Rodriguez and committed by
Greg Kroah-Hartman
1982f05d 5f801f7f

+3 -3
+3 -3
drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c
··· 105 105 bool bIsArray; 106 106 }; 107 107 108 - typedef struct ST_READ_STATUS { 108 + struct st_read_status { 109 109 unsigned uTagID; 110 110 unsigned uSection; 111 111 unsigned uLineCount; 112 112 unsigned uCharCount; 113 113 unsigned uByteCount; 114 - }ST_READ_STATUS; 114 + }; 115 115 116 116 117 117 /* Stores the number of PS Tags */ ··· 328 328 329 329 int uReadCount; 330 330 struct st_ps_data_format stPS_DataFormat; 331 - ST_READ_STATUS stReadStatus = {0, 0, 0,0}; 331 + struct st_read_status stReadStatus = {0, 0, 0,0}; 332 332 pos = 0; 333 333 Buffer = NULL; 334 334