Commit 646bf092 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

irda: w83977af_ir: Parenthesis alignment

Neaten function declaration and definition arguments.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ae9e736b
...@@ -84,13 +84,13 @@ static struct w83977af_ir *dev_self[] = { NULL, NULL, NULL, NULL}; ...@@ -84,13 +84,13 @@ static struct w83977af_ir *dev_self[] = { NULL, NULL, NULL, NULL};
/* Some prototypes */ /* Some prototypes */
static int w83977af_open(int i, unsigned int iobase, unsigned int irq, static int w83977af_open(int i, unsigned int iobase, unsigned int irq,
unsigned int dma); unsigned int dma);
static int w83977af_close(struct w83977af_ir *self); static int w83977af_close(struct w83977af_ir *self);
static int w83977af_probe(int iobase, int irq, int dma); static int w83977af_probe(int iobase, int irq, int dma);
static int w83977af_dma_receive(struct w83977af_ir *self); static int w83977af_dma_receive(struct w83977af_ir *self);
static int w83977af_dma_receive_complete(struct w83977af_ir *self); static int w83977af_dma_receive_complete(struct w83977af_ir *self);
static netdev_tx_t w83977af_hard_xmit(struct sk_buff *skb, static netdev_tx_t w83977af_hard_xmit(struct sk_buff *skb,
struct net_device *dev); struct net_device *dev);
static int w83977af_pio_write(int iobase, __u8 *buf, int len, int fifo_size); static int w83977af_pio_write(int iobase, __u8 *buf, int len, int fifo_size);
static void w83977af_dma_write(struct w83977af_ir *self, int iobase); static void w83977af_dma_write(struct w83977af_ir *self, int iobase);
static void w83977af_change_speed(struct w83977af_ir *self, __u32 speed); static void w83977af_change_speed(struct w83977af_ir *self, __u32 speed);
...@@ -477,7 +477,7 @@ static void w83977af_change_speed(struct w83977af_ir *self, __u32 speed) ...@@ -477,7 +477,7 @@ static void w83977af_change_speed(struct w83977af_ir *self, __u32 speed)
* *
*/ */
static netdev_tx_t w83977af_hard_xmit(struct sk_buff *skb, static netdev_tx_t w83977af_hard_xmit(struct sk_buff *skb,
struct net_device *dev) struct net_device *dev)
{ {
struct w83977af_ir *self; struct w83977af_ir *self;
__s32 speed; __s32 speed;
......
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