staging: wlan-ng: fix parenthesis alignment in prism2fw.c
This patch fix open parenthesis alignment matching in prism2fw.c file to comply with the standard kernel coding style. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e0ae434801
commit
86605dd0e7
1 changed files with 26 additions and 23 deletions
|
@ -161,7 +161,7 @@ static struct hfa384x_caplevel priid;
|
|||
/* Local Function Declarations */
|
||||
|
||||
static int prism2_fwapply(const struct ihex_binrec *rfptr,
|
||||
struct wlandevice *wlandev);
|
||||
struct wlandevice *wlandev);
|
||||
|
||||
static int read_fwfile(const struct ihex_binrec *rfptr);
|
||||
|
||||
|
@ -172,13 +172,15 @@ static int read_cardpda(struct pda *pda, struct wlandevice *wlandev);
|
|||
static int mkpdrlist(struct pda *pda);
|
||||
|
||||
static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
|
||||
struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda);
|
||||
struct s3plugrec *s3plug, unsigned int ns3plug,
|
||||
struct pda *pda);
|
||||
|
||||
static int crcimage(struct imgchunk *fchunk, unsigned int nfchunks,
|
||||
struct s3crcrec *s3crc, unsigned int ns3crc);
|
||||
|
||||
static int writeimage(struct wlandevice *wlandev, struct imgchunk *fchunk,
|
||||
unsigned int nfchunks);
|
||||
|
||||
static void free_chunks(struct imgchunk *fchunk, unsigned int *nfchunks);
|
||||
|
||||
static void free_srecs(void);
|
||||
|
@ -674,7 +676,8 @@ static int mkpdrlist(struct pda *pda)
|
|||
*----------------------------------------------------------------
|
||||
*/
|
||||
static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
|
||||
struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda)
|
||||
struct s3plugrec *s3plug, unsigned int ns3plug,
|
||||
struct pda *pda)
|
||||
{
|
||||
int result = 0;
|
||||
int i; /* plug index */
|
||||
|
|
Loading…
Reference in a new issue