diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 05:36:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:44 -0500 |
commit | a7113a966241b700aecc7b8cb326cecb62e3c4b2 (patch) | |
tree | b28920a82e7cad67ea6e55826e161ba0e4cf9782 /drivers/char/dtlk.c | |
parent | 6c648be6f4183775679c1f2cc4d094128f104fb2 (diff) |
[PATCH] struct path: convert char-drivers
Signed-off-by: Josef Sipek <jsipek@fsl.cs.sunysb.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/dtlk.c')
-rw-r--r-- | drivers/char/dtlk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/dtlk.c b/drivers/char/dtlk.c index 5e82c3bad2e3..d4005e94fe5f 100644 --- a/drivers/char/dtlk.c +++ b/drivers/char/dtlk.c | |||
@@ -122,7 +122,7 @@ static void dtlk_timer_tick(unsigned long data); | |||
122 | static ssize_t dtlk_read(struct file *file, char __user *buf, | 122 | static ssize_t dtlk_read(struct file *file, char __user *buf, |
123 | size_t count, loff_t * ppos) | 123 | size_t count, loff_t * ppos) |
124 | { | 124 | { |
125 | unsigned int minor = iminor(file->f_dentry->d_inode); | 125 | unsigned int minor = iminor(file->f_path.dentry->d_inode); |
126 | char ch; | 126 | char ch; |
127 | int i = 0, retries; | 127 | int i = 0, retries; |
128 | 128 | ||
@@ -174,7 +174,7 @@ static ssize_t dtlk_write(struct file *file, const char __user *buf, | |||
174 | } | 174 | } |
175 | #endif | 175 | #endif |
176 | 176 | ||
177 | if (iminor(file->f_dentry->d_inode) != DTLK_MINOR) | 177 | if (iminor(file->f_path.dentry->d_inode) != DTLK_MINOR) |
178 | return -EINVAL; | 178 | return -EINVAL; |
179 | 179 | ||
180 | while (1) { | 180 | while (1) { |