Skip to content

Commit

Permalink
ath6kl: remove-typedef ST_READ_STATUS
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Luis R. Rodriguez authored and Greg Kroah-Hartman committed Mar 14, 2011
1 parent 5f801f7 commit 1982f05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/ath6kl/miscdrv/ar3kps/ar3kpsparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ struct st_ps_data_format {
bool bIsArray;
};

typedef struct ST_READ_STATUS {
struct st_read_status {
unsigned uTagID;
unsigned uSection;
unsigned uLineCount;
unsigned uCharCount;
unsigned uByteCount;
}ST_READ_STATUS;
};


/* Stores the number of PS Tags */
Expand Down Expand Up @@ -328,7 +328,7 @@ int AthParseFilesUnified(u8 *srcbuffer,u32 srclen, int FileFormat)

int uReadCount;
struct st_ps_data_format stPS_DataFormat;
ST_READ_STATUS stReadStatus = {0, 0, 0,0};
struct st_read_status stReadStatus = {0, 0, 0,0};
pos = 0;
Buffer = NULL;

Expand Down

0 comments on commit 1982f05

Please sign in to comment.