staging/wlan-ng: prsim2fw.c coding style cleanup
this patch fixes the coding style problems found by using checkpatch.pl drivers/staging/wlan-ng/prism2fw.c:175: ERROR: "foo * bar" should be "foo *bar" drivers/staging/wlan-ng/prism2fw.c:210: WARNING: line over 80 characters drivers/staging/wlan-ng/prism2fw.c:596: WARNING: line over 80 characters drivers/staging/wlan-ng/prism2fw.c:658: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8aac4d4439
commit
cf66823dd2
1 changed files with 6 additions and 4 deletions
|
@ -172,7 +172,7 @@ static int read_cardpda(struct pda *pda, wlandevice_t *wlandev);
|
||||||
static int mkpdrlist(struct pda *pda);
|
static int mkpdrlist(struct pda *pda);
|
||||||
|
|
||||||
static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
|
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,
|
static int crcimage(struct imgchunk *fchunk, unsigned int nfchunks,
|
||||||
struct s3crcrec *s3crc, unsigned int ns3crc);
|
struct s3crcrec *s3crc, unsigned int ns3crc);
|
||||||
|
@ -207,7 +207,8 @@ int prism2_fwtry(struct usb_device *udev, wlandevice_t *wlandev)
|
||||||
|
|
||||||
printk(KERN_INFO "prism2_usb: Checking for firmware %s\n",
|
printk(KERN_INFO "prism2_usb: Checking for firmware %s\n",
|
||||||
PRISM2_USB_FWFILE);
|
PRISM2_USB_FWFILE);
|
||||||
if (request_ihex_firmware(&fw_entry, PRISM2_USB_FWFILE, &udev->dev) != 0) {
|
if (request_ihex_firmware(&fw_entry,
|
||||||
|
PRISM2_USB_FWFILE, &udev->dev) != 0) {
|
||||||
printk(KERN_INFO
|
printk(KERN_INFO
|
||||||
"prism2_usb: Firmware not available, but not essential\n");
|
"prism2_usb: Firmware not available, but not essential\n");
|
||||||
printk(KERN_INFO
|
printk(KERN_INFO
|
||||||
|
@ -593,7 +594,8 @@ int mkpdrlist(struct pda *pda)
|
||||||
le16_to_cpu(pda16[curroff + 1]) != HFA384x_PDR_END_OF_PDA) {
|
le16_to_cpu(pda16[curroff + 1]) != HFA384x_PDR_END_OF_PDA) {
|
||||||
pda->rec[pda->nrec] = (hfa384x_pdrec_t *) &(pda16[curroff]);
|
pda->rec[pda->nrec] = (hfa384x_pdrec_t *) &(pda16[curroff]);
|
||||||
|
|
||||||
if (le16_to_cpu(pda->rec[pda->nrec]->code) == HFA384x_PDR_NICID) {
|
if (le16_to_cpu(pda->rec[pda->nrec]->code) ==
|
||||||
|
HFA384x_PDR_NICID) {
|
||||||
memcpy(&nicid, &pda->rec[pda->nrec]->data.nicid,
|
memcpy(&nicid, &pda->rec[pda->nrec]->data.nicid,
|
||||||
sizeof(nicid));
|
sizeof(nicid));
|
||||||
nicid.id = le16_to_cpu(nicid.id);
|
nicid.id = le16_to_cpu(nicid.id);
|
||||||
|
@ -655,7 +657,7 @@ int mkpdrlist(struct pda *pda)
|
||||||
* ~0 failure
|
* ~0 failure
|
||||||
----------------------------------------------------------------*/
|
----------------------------------------------------------------*/
|
||||||
int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
|
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 result = 0;
|
||||||
int i; /* plug index */
|
int i; /* plug index */
|
||||||
|
|
Loading…
Add table
Reference in a new issue