Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43601
b: refs/heads/master
c: 40fad04
h: refs/heads/master
i:
  43599: a11e00a
v: v3
  • Loading branch information
Josef Sipek authored and Linus Torvalds committed Dec 8, 2006
1 parent 44a5b2d commit 2a50af3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 46cc65a767f458aec4d342b814a661a15dc31be1
refs/heads/master: 40fad04b224db982cce5f6226ebe3ceb6529b781
6 changes: 3 additions & 3 deletions trunk/drivers/pcmcia/pcmcia_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ static ssize_t ds_read(struct file *file, char __user *buf,
user_info_t *user;
int ret;

ds_dbg(2, "ds_read(socket %d)\n", iminor(file->f_dentry->d_inode));
ds_dbg(2, "ds_read(socket %d)\n", iminor(file->f_path.dentry->d_inode));

if (count < 4)
return -EINVAL;
Expand All @@ -511,7 +511,7 @@ static ssize_t ds_read(struct file *file, char __user *buf,
static ssize_t ds_write(struct file *file, const char __user *buf,
size_t count, loff_t *ppos)
{
ds_dbg(2, "ds_write(socket %d)\n", iminor(file->f_dentry->d_inode));
ds_dbg(2, "ds_write(socket %d)\n", iminor(file->f_path.dentry->d_inode));

if (count != 4)
return -EINVAL;
Expand All @@ -529,7 +529,7 @@ static u_int ds_poll(struct file *file, poll_table *wait)
struct pcmcia_socket *s;
user_info_t *user;

ds_dbg(2, "ds_poll(socket %d)\n", iminor(file->f_dentry->d_inode));
ds_dbg(2, "ds_poll(socket %d)\n", iminor(file->f_path.dentry->d_inode));

user = file->private_data;
if (CHECK_USER(user))
Expand Down

0 comments on commit 2a50af3

Please sign in to comment.