Commit a541306e authored by Luis R. Rodriguez's avatar Luis R. Rodriguez Committed by Greg Kroah-Hartman

ath6kl: remove-typedef PSCmdPacket

remove-typedef -s PSCmdPacket \
	"struct ps_cmd_packet" drivers/staging/ath6kl/
Tested-by: default avatarNaveen Singh <nsingh@atheros.com>
Signed-off-by: default avatarLuis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 62860859
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
*/ */
typedef struct { typedef struct {
PSCmdPacket *HciCmdList; struct ps_cmd_packet *HciCmdList;
u32 num_packets; u32 num_packets;
struct ar3k_config_info *dev; struct ar3k_config_info *dev;
}HciCommandListParam; }HciCommandListParam;
...@@ -133,7 +133,7 @@ int PSSendOps(void *arg) ...@@ -133,7 +133,7 @@ int PSSendOps(void *arg)
{ {
int i; int i;
int status = 0; int status = 0;
PSCmdPacket *HciCmdList; /* List storing the commands */ struct ps_cmd_packet *HciCmdList; /* List storing the commands */
const struct firmware* firmware; const struct firmware* firmware;
u32 numCmds; u32 numCmds;
u8 *event; u8 *event;
......
...@@ -130,7 +130,7 @@ tRamPatch RamPatch[MAX_NUM_PATCH_ENTRY]; ...@@ -130,7 +130,7 @@ tRamPatch RamPatch[MAX_NUM_PATCH_ENTRY];
int AthParseFilesUnified(u8 *srcbuffer,u32 srclen, int FileFormat); int AthParseFilesUnified(u8 *srcbuffer,u32 srclen, int FileFormat);
char AthReadChar(u8 *buffer, u32 len,u32 *pos); char AthReadChar(u8 *buffer, u32 len,u32 *pos);
char *AthGetLine(char *buffer, int maxlen, u8 *srcbuffer,u32 len,u32 *pos); char *AthGetLine(char *buffer, int maxlen, u8 *srcbuffer,u32 len,u32 *pos);
static int AthPSCreateHCICommand(u8 Opcode, u32 Param1,PSCmdPacket *PSPatchPacket,u32 *index); static int AthPSCreateHCICommand(u8 Opcode, u32 Param1,struct ps_cmd_packet *PSPatchPacket,u32 *index);
/* Function to reads the next character from the input buffer */ /* Function to reads the next character from the input buffer */
char AthReadChar(u8 *buffer, u32 len,u32 *pos) char AthReadChar(u8 *buffer, u32 len,u32 *pos)
...@@ -764,7 +764,7 @@ static void LoadHeader(u8 *HCI_PS_Command,u8 opcode,int length,int index){ ...@@ -764,7 +764,7 @@ static void LoadHeader(u8 *HCI_PS_Command,u8 opcode,int length,int index){
///////////////////////// /////////////////////////
// //
int AthCreateCommandList(PSCmdPacket **HciPacketList, u32 *numPackets) int AthCreateCommandList(struct ps_cmd_packet **HciPacketList, u32 *numPackets)
{ {
u8 count; u8 count;
...@@ -785,8 +785,8 @@ int AthCreateCommandList(PSCmdPacket **HciPacketList, u32 *numPackets) ...@@ -785,8 +785,8 @@ int AthCreateCommandList(PSCmdPacket **HciPacketList, u32 *numPackets)
if(Patch_Count > 0) { if(Patch_Count > 0) {
NumcmdEntry++; /* Patch Enable Command */ NumcmdEntry++; /* Patch Enable Command */
} }
AR_DEBUG_PRINTF(ATH_DEBUG_ERR,("Num Cmd Entries %d Size %d \r\n",NumcmdEntry,(u32)sizeof(PSCmdPacket) * NumcmdEntry)); AR_DEBUG_PRINTF(ATH_DEBUG_ERR,("Num Cmd Entries %d Size %d \r\n",NumcmdEntry,(u32)sizeof(struct ps_cmd_packet) * NumcmdEntry));
(*HciPacketList) = A_MALLOC(sizeof(PSCmdPacket) * NumcmdEntry); (*HciPacketList) = A_MALLOC(sizeof(struct ps_cmd_packet) * NumcmdEntry);
if(NULL == *HciPacketList) { if(NULL == *HciPacketList) {
AR_DEBUG_PRINTF(ATH_DEBUG_ERR,("memory allocation failed \r\n")); AR_DEBUG_PRINTF(ATH_DEBUG_ERR,("memory allocation failed \r\n"));
} }
...@@ -833,7 +833,7 @@ int AthCreateCommandList(PSCmdPacket **HciPacketList, u32 *numPackets) ...@@ -833,7 +833,7 @@ int AthCreateCommandList(PSCmdPacket **HciPacketList, u32 *numPackets)
//////////////////////// ////////////////////////
///////////// /////////////
static int AthPSCreateHCICommand(u8 Opcode, u32 Param1,PSCmdPacket *PSPatchPacket,u32 *index) static int AthPSCreateHCICommand(u8 Opcode, u32 Param1,struct ps_cmd_packet *PSPatchPacket,u32 *index)
{ {
u8 *HCI_PS_Command; u8 *HCI_PS_Command;
u32 Length; u32 Length;
...@@ -955,7 +955,7 @@ static int AthPSCreateHCICommand(u8 Opcode, u32 Param1,PSCmdPacket *PSPatchPacke ...@@ -955,7 +955,7 @@ static int AthPSCreateHCICommand(u8 Opcode, u32 Param1,PSCmdPacket *PSPatchPacke
} }
return 0; return 0;
} }
int AthFreeCommandList(PSCmdPacket **HciPacketList, u32 numPackets) int AthFreeCommandList(struct ps_cmd_packet **HciPacketList, u32 numPackets)
{ {
int i; int i;
if(*HciPacketList == NULL) { if(*HciPacketList == NULL) {
......
...@@ -89,11 +89,11 @@ ...@@ -89,11 +89,11 @@
typedef struct PSCmdPacket struct ps_cmd_packet
{ {
u8 *Hcipacket; u8 *Hcipacket;
int packetLen; int packetLen;
} PSCmdPacket; };
/* Parses a Patch information buffer and store it in global structure */ /* Parses a Patch information buffer and store it in global structure */
int AthDoParsePatch(u8 *, u32 ); int AthDoParsePatch(u8 *, u32 );
...@@ -112,8 +112,8 @@ int AthDoParsePS(u8 *, u32 ); ...@@ -112,8 +112,8 @@ int AthDoParsePS(u8 *, u32 );
* PS Tag Command(s) * PS Tag Command(s)
* *
*/ */
int AthCreateCommandList(PSCmdPacket **, u32 *); int AthCreateCommandList(struct ps_cmd_packet **, u32 *);
/* Cleanup the dynamically allicated HCI command list */ /* Cleanup the dynamically allicated HCI command list */
int AthFreeCommandList(PSCmdPacket **HciPacketList, u32 numPackets); int AthFreeCommandList(struct ps_cmd_packet **HciPacketList, u32 numPackets);
#endif /* __AR3KPSPARSER_H */ #endif /* __AR3KPSPARSER_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment