diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2011-03-14 13:59:09 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-14 14:58:56 -0400 |
commit | 1982f05de1d572a048c4acf584fc4b5294f487e3 (patch) | |
tree | d4b3d8de0afb92ff753a2a259da662836abf3179 | |
parent | 5f801f7f44805269ff750568a146c38b3367d7f0 (diff) |
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>
-rw-r--r-- | drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c b/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c index 7c9d4a80ee0d..94a0939bfbf2 100644 --- a/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c +++ b/drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c | |||
@@ -105,13 +105,13 @@ struct st_ps_data_format { | |||
105 | bool bIsArray; | 105 | bool bIsArray; |
106 | }; | 106 | }; |
107 | 107 | ||
108 | typedef struct ST_READ_STATUS { | 108 | struct st_read_status { |
109 | unsigned uTagID; | 109 | unsigned uTagID; |
110 | unsigned uSection; | 110 | unsigned uSection; |
111 | unsigned uLineCount; | 111 | unsigned uLineCount; |
112 | unsigned uCharCount; | 112 | unsigned uCharCount; |
113 | unsigned uByteCount; | 113 | unsigned uByteCount; |
114 | }ST_READ_STATUS; | 114 | }; |
115 | 115 | ||
116 | 116 | ||
117 | /* Stores the number of PS Tags */ | 117 | /* Stores the number of PS Tags */ |
@@ -328,7 +328,7 @@ int AthParseFilesUnified(u8 *srcbuffer,u32 srclen, int FileFormat) | |||
328 | 328 | ||
329 | int uReadCount; | 329 | int uReadCount; |
330 | struct st_ps_data_format stPS_DataFormat; | 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 | pos = 0; | 332 | pos = 0; |
333 | Buffer = NULL; | 333 | Buffer = NULL; |
334 | 334 | ||