Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 203487
b: refs/heads/master
c: 55a40e2
h: refs/heads/master
i:
  203485: 9aede55
  203483: edaaf76
  203479: 83ed5fb
  203471: 389a2d7
  203455: 84cd84a
v: v3
  • Loading branch information
Joe Perches authored and David S. Miller committed Jul 13, 2010
1 parent a27cb2f commit af37da7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8a994a7180104b305970232e160b18523c1fbd6a
refs/heads/master: 55a40e243210b72169eaa1cbd9b6edc6097571f8
10 changes: 5 additions & 5 deletions trunk/net/irda/irnet/irnet_ppp.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ static int
dev_irnet_close(struct inode * inode,
struct file * file)
{
irnet_socket * ap = (struct irnet_socket *) file->private_data;
irnet_socket * ap = file->private_data;

DENTER(FS_TRACE, "(file=0x%p, ap=0x%p)\n",
file, ap);
Expand Down Expand Up @@ -564,7 +564,7 @@ dev_irnet_write(struct file * file,
size_t count,
loff_t * ppos)
{
irnet_socket * ap = (struct irnet_socket *) file->private_data;
irnet_socket * ap = file->private_data;

DPASS(FS_TRACE, "(file=0x%p, ap=0x%p, count=%Zd)\n",
file, ap, count);
Expand All @@ -588,7 +588,7 @@ dev_irnet_read(struct file * file,
size_t count,
loff_t * ppos)
{
irnet_socket * ap = (struct irnet_socket *) file->private_data;
irnet_socket * ap = file->private_data;

DPASS(FS_TRACE, "(file=0x%p, ap=0x%p, count=%Zd)\n",
file, ap, count);
Expand All @@ -609,7 +609,7 @@ static unsigned int
dev_irnet_poll(struct file * file,
poll_table * wait)
{
irnet_socket * ap = (struct irnet_socket *) file->private_data;
irnet_socket * ap = file->private_data;
unsigned int mask;

DENTER(FS_TRACE, "(file=0x%p, ap=0x%p)\n",
Expand Down Expand Up @@ -638,7 +638,7 @@ dev_irnet_ioctl(
unsigned int cmd,
unsigned long arg)
{
irnet_socket * ap = (struct irnet_socket *) file->private_data;
irnet_socket * ap = file->private_data;
int err;
int val;
void __user *argp = (void __user *)arg;
Expand Down

0 comments on commit af37da7

Please sign in to comment.