Commit b32db030 authored by Peng Li's avatar Peng Li Committed by David S. Miller

net: wan: fix an code style issue about "foo* bar"

Fix the checkpatch error as "foo* bar" and should be "foo *bar",
and "(foo*)" should be "(foo *)".
Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8890d0a1
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "wanxl.h" #include "wanxl.h"
static const char* version = "wanXL serial card driver version: 0.48"; static const char *version = "wanXL serial card driver version: 0.48";
#define PLX_CTL_RESET 0x40000000 /* adapter reset */ #define PLX_CTL_RESET 0x40000000 /* adapter reset */
...@@ -227,7 +227,7 @@ static inline void wanxl_rx_intr(struct card *card) ...@@ -227,7 +227,7 @@ static inline void wanxl_rx_intr(struct card *card)
} }
} }
static irqreturn_t wanxl_intr(int irq, void* dev_id) static irqreturn_t wanxl_intr(int irq, void *dev_id)
{ {
struct card *card = dev_id; struct card *card = dev_id;
int i; int i;
...@@ -677,7 +677,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev, ...@@ -677,7 +677,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev,
} }
for (i = 0; i < sizeof(firmware); i += 4) for (i = 0; i < sizeof(firmware); i += 4)
writel(ntohl(*(__be32*)(firmware + i)), mem + PDM_OFFSET + i); writel(ntohl(*(__be32 *)(firmware + i)), mem + PDM_OFFSET + i);
for (i = 0; i < ports; i++) for (i = 0; i < ports; i++)
writel(card->status_address + writel(card->status_address +
......
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