提交 a05d08c4 编写于 作者: Z Zachary Richey 提交者: Greg Kroah-Hartman

Staging: wlan-ng: Fixed non static functions in prism2fw.c

Fixed non static functions in prism2fw.c
Signed-off-by: NZachary Richey <zr.public@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 3041f306
...@@ -160,21 +160,30 @@ hfa384x_caplevel_t priid; ...@@ -160,21 +160,30 @@ hfa384x_caplevel_t priid;
/*================================================================*/ /*================================================================*/
/* Local Function Declarations */ /* Local Function Declarations */
int prism2_fwapply(const struct ihex_binrec *rfptr, wlandevice_t *wlandev); static int prism2_fwapply(const struct ihex_binrec *rfptr,
int read_fwfile(const struct ihex_binrec *rfptr); wlandevice_t *wlandev);
int mkimage(imgchunk_t *clist, unsigned int *ccnt);
int read_cardpda(pda_t *pda, wlandevice_t *wlandev); static int read_fwfile(const struct ihex_binrec *rfptr);
int mkpdrlist(pda_t *pda);
int plugimage(imgchunk_t *fchunk, unsigned int nfchunks, static int mkimage(imgchunk_t *clist, unsigned int *ccnt);
static int read_cardpda(pda_t *pda, wlandevice_t *wlandev);
static int mkpdrlist(pda_t *pda);
static int plugimage(imgchunk_t *fchunk, unsigned int nfchunks,
s3plugrec_t *s3plug, unsigned int ns3plug, pda_t * pda); s3plugrec_t *s3plug, unsigned int ns3plug, pda_t * pda);
int crcimage(imgchunk_t *fchunk, unsigned int nfchunks,
static int crcimage(imgchunk_t *fchunk, unsigned int nfchunks,
s3crcrec_t *s3crc, unsigned int ns3crc); s3crcrec_t *s3crc, unsigned int ns3crc);
int writeimage(wlandevice_t *wlandev, imgchunk_t *fchunk,
static int writeimage(wlandevice_t *wlandev, imgchunk_t *fchunk,
unsigned int nfchunks); unsigned int nfchunks);
void free_chunks(imgchunk_t *fchunk, unsigned int *nfchunks); static void free_chunks(imgchunk_t *fchunk, unsigned int *nfchunks);
void free_srecs(void);
static void free_srecs(void);
int validate_identity(void); static int validate_identity(void);
/*================================================================*/ /*================================================================*/
/* Function Definitions */ /* Function Definitions */
...@@ -255,7 +264,7 @@ int prism2_fwapply(const struct ihex_binrec *rfptr, wlandevice_t *wlandev) ...@@ -255,7 +264,7 @@ int prism2_fwapply(const struct ihex_binrec *rfptr, wlandevice_t *wlandev)
/* clear the pda and add an initial END record */ /* clear the pda and add an initial END record */
memset(&pda, 0, sizeof(pda)); memset(&pda, 0, sizeof(pda));
pda.rec[0] = (hfa384x_pdrec_t *) pda.buf; pda.rec[0] = (hfa384x_pdrec_t *) pda.buf;
pda.rec[0]->len = cpu_to_le16(2); /* len in words *//* len in words */ pda.rec[0]->len = cpu_to_le16(2); /* len in words */
pda.rec[0]->code = cpu_to_le16(HFA384x_PDR_END_OF_PDA); pda.rec[0]->code = cpu_to_le16(HFA384x_PDR_END_OF_PDA);
pda.nrec = 1; pda.nrec = 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册