diff options
Diffstat (limited to 'drivers/scsi/scsi_proc.c')
-rw-r--r-- | drivers/scsi/scsi_proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/scsi_proc.c b/drivers/scsi/scsi_proc.c index 1eb34c34d7b9..db66357211ed 100644 --- a/drivers/scsi/scsi_proc.c +++ b/drivers/scsi/scsi_proc.c | |||
@@ -48,7 +48,7 @@ static DEFINE_MUTEX(global_host_template_mutex); | |||
48 | static ssize_t proc_scsi_host_write(struct file *file, const char __user *buf, | 48 | static ssize_t proc_scsi_host_write(struct file *file, const char __user *buf, |
49 | size_t count, loff_t *ppos) | 49 | size_t count, loff_t *ppos) |
50 | { | 50 | { |
51 | struct Scsi_Host *shost = PDE(file_inode(file))->data; | 51 | struct Scsi_Host *shost = PDE_DATA(file_inode(file)); |
52 | ssize_t ret = -ENOMEM; | 52 | ssize_t ret = -ENOMEM; |
53 | char *page; | 53 | char *page; |
54 | 54 | ||
@@ -78,7 +78,7 @@ static int proc_scsi_show(struct seq_file *m, void *v) | |||
78 | 78 | ||
79 | static int proc_scsi_host_open(struct inode *inode, struct file *file) | 79 | static int proc_scsi_host_open(struct inode *inode, struct file *file) |
80 | { | 80 | { |
81 | return single_open_size(file, proc_scsi_show, PDE(inode)->data, | 81 | return single_open_size(file, proc_scsi_show, PDE_DATA(inode), |
82 | 4 * PAGE_SIZE); | 82 | 4 * PAGE_SIZE); |
83 | } | 83 | } |
84 | 84 | ||