diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 05:37:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:46 -0500 |
commit | 780884144248cbb6945b191c9867741bb8c0ad35 (patch) | |
tree | 592c796d5ece6582bd3aa21426c6141055eb44bc /drivers | |
parent | 6d63079adde80bb549528371e6407f88e9d27bc3 (diff) |
[PATCH] struct path: convert ipmi
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')
-rw-r--r-- | drivers/char/ipmi/ipmi_devintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/ipmi/ipmi_devintf.c b/drivers/char/ipmi/ipmi_devintf.c index 375d3378eecd..e257835a9a73 100644 --- a/drivers/char/ipmi/ipmi_devintf.c +++ b/drivers/char/ipmi/ipmi_devintf.c | |||
@@ -798,7 +798,7 @@ static long compat_ipmi_ioctl(struct file *filep, unsigned int cmd, | |||
798 | if (copy_to_user(precv64, &recv64, sizeof(recv64))) | 798 | if (copy_to_user(precv64, &recv64, sizeof(recv64))) |
799 | return -EFAULT; | 799 | return -EFAULT; |
800 | 800 | ||
801 | rc = ipmi_ioctl(filep->f_dentry->d_inode, filep, | 801 | rc = ipmi_ioctl(filep->f_path.dentry->d_inode, filep, |
802 | ((cmd == COMPAT_IPMICTL_RECEIVE_MSG) | 802 | ((cmd == COMPAT_IPMICTL_RECEIVE_MSG) |
803 | ? IPMICTL_RECEIVE_MSG | 803 | ? IPMICTL_RECEIVE_MSG |
804 | : IPMICTL_RECEIVE_MSG_TRUNC), | 804 | : IPMICTL_RECEIVE_MSG_TRUNC), |
@@ -815,7 +815,7 @@ static long compat_ipmi_ioctl(struct file *filep, unsigned int cmd, | |||
815 | return rc; | 815 | return rc; |
816 | } | 816 | } |
817 | default: | 817 | default: |
818 | return ipmi_ioctl(filep->f_dentry->d_inode, filep, cmd, arg); | 818 | return ipmi_ioctl(filep->f_path.dentry->d_inode, filep, cmd, arg); |
819 | } | 819 | } |
820 | } | 820 | } |
821 | #endif | 821 | #endif |