Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 318041
b: refs/heads/master
c: a952f94
h: refs/heads/master
i:
  318039: 46077a3
v: v3
  • Loading branch information
Toshiaki Yamane authored and Greg Kroah-Hartman committed Jul 19, 2012
1 parent f5e3970 commit 39e7467
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 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: e58b89dade3e9e7577f8481b21af3043dc0fffe3
refs/heads/master: a952f947b9ebf83cea406bf69f2847a3ca8a076c
6 changes: 3 additions & 3 deletions trunk/drivers/staging/frontier/alphatrack.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ static int usb_alphatrack_open(struct inode *inode, struct file *file)
interface = usb_find_interface(&usb_alphatrack_driver, subminor);

if (!interface) {
printk(KERN_ERR "%s - error, can't find device for minor %d\n",
pr_err("%s - error, can't find device for minor %d\n",
__func__, subminor);
retval = -ENODEV;
goto unlock_disconnect_exit;
Expand Down Expand Up @@ -494,7 +494,7 @@ static ssize_t usb_alphatrack_read(struct file *file, char __user *buffer,
/* verify that the device wasn't unplugged */
if (dev->intf == NULL) {
retval = -ENODEV;
printk(KERN_ERR "%s: No device or device unplugged %d\n",
pr_err("%s: No device or device unplugged %d\n",
__func__, retval);
goto unlock_exit;
}
Expand Down Expand Up @@ -565,7 +565,7 @@ static ssize_t usb_alphatrack_write(struct file *file,
/* verify that the device wasn't unplugged */
if (dev->intf == NULL) {
retval = -ENODEV;
printk(KERN_ERR "%s: No device or device unplugged %d\n",
pr_err("%s: No device or device unplugged %d\n",
__func__, retval);
goto unlock_exit;
}
Expand Down
12 changes: 6 additions & 6 deletions trunk/drivers/staging/frontier/tranzport.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ static int usb_tranzport_open(struct inode *inode, struct file *file)
interface = usb_find_interface(&usb_tranzport_driver, subminor);

if (!interface) {
printk(KERN_ERR "%s - error, can't find device for minor %d\n",
__func__, subminor);
pr_err("%s - error, can't find device for minor %d\n",
__func__, subminor);
retval = -ENODEV;
goto unlock_disconnect_exit;
}
Expand Down Expand Up @@ -520,8 +520,8 @@ static ssize_t usb_tranzport_read(struct file *file, char __user *buffer,
/* verify that the device wasn't unplugged */
if (dev->intf == NULL) {
retval = -ENODEV;
printk(KERN_ERR "%s: No device or device unplugged %d\n",
__func__, retval);
pr_err("%s: No device or device unplugged %d\n",
__func__, retval);
goto unlock_exit;
}

Expand Down Expand Up @@ -693,8 +693,8 @@ static ssize_t usb_tranzport_write(struct file *file,
/* verify that the device wasn't unplugged */
if (dev->intf == NULL) {
retval = -ENODEV;
printk(KERN_ERR "%s: No device or device unplugged %d\n",
__func__, retval);
pr_err("%s: No device or device unplugged %d\n",
__func__, retval);
goto unlock_exit;
}

Expand Down

0 comments on commit 39e7467

Please sign in to comment.