diff options
Diffstat (limited to 'drivers/usb/mon')
-rw-r--r-- | drivers/usb/mon/mon_stat.c | 2 | ||||
-rw-r--r-- | drivers/usb/mon/mon_text.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/mon/mon_stat.c b/drivers/usb/mon/mon_stat.c index 1fe01d994a79..86ad2b381c4b 100644 --- a/drivers/usb/mon/mon_stat.c +++ b/drivers/usb/mon/mon_stat.c | |||
@@ -28,7 +28,7 @@ static int mon_stat_open(struct inode *inode, struct file *file) | |||
28 | if ((sp = kmalloc(sizeof(struct snap), GFP_KERNEL)) == NULL) | 28 | if ((sp = kmalloc(sizeof(struct snap), GFP_KERNEL)) == NULL) |
29 | return -ENOMEM; | 29 | return -ENOMEM; |
30 | 30 | ||
31 | mbus = inode->u.generic_ip; | 31 | mbus = inode->i_private; |
32 | 32 | ||
33 | sp->slen = snprintf(sp->str, STAT_BUF_SIZE, | 33 | sp->slen = snprintf(sp->str, STAT_BUF_SIZE, |
34 | "nreaders %d events %u text_lost %u\n", | 34 | "nreaders %d events %u text_lost %u\n", |
diff --git a/drivers/usb/mon/mon_text.c b/drivers/usb/mon/mon_text.c index f961a770cee2..2fd39b4fa166 100644 --- a/drivers/usb/mon/mon_text.c +++ b/drivers/usb/mon/mon_text.c | |||
@@ -238,7 +238,7 @@ static int mon_text_open(struct inode *inode, struct file *file) | |||
238 | int rc; | 238 | int rc; |
239 | 239 | ||
240 | mutex_lock(&mon_lock); | 240 | mutex_lock(&mon_lock); |
241 | mbus = inode->u.generic_ip; | 241 | mbus = inode->i_private; |
242 | ubus = mbus->u_bus; | 242 | ubus = mbus->u_bus; |
243 | 243 | ||
244 | rp = kzalloc(sizeof(struct mon_reader_text), GFP_KERNEL); | 244 | rp = kzalloc(sizeof(struct mon_reader_text), GFP_KERNEL); |
@@ -401,7 +401,7 @@ static int mon_text_release(struct inode *inode, struct file *file) | |||
401 | struct mon_event_text *ep; | 401 | struct mon_event_text *ep; |
402 | 402 | ||
403 | mutex_lock(&mon_lock); | 403 | mutex_lock(&mon_lock); |
404 | mbus = inode->u.generic_ip; | 404 | mbus = inode->i_private; |
405 | 405 | ||
406 | if (mbus->nreaders <= 0) { | 406 | if (mbus->nreaders <= 0) { |
407 | printk(KERN_ERR TAG ": consistency error on close\n"); | 407 | printk(KERN_ERR TAG ": consistency error on close\n"); |