Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303631
b: refs/heads/master
c: 46267f4
h: refs/heads/master
i:
  303629: 21317d4
  303627: af24843
  303623: 06ec566
  303615: 4002188
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Apr 25, 2012
1 parent 2b9ad89 commit ee02084
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: d867c43e248fa9369eb40c443eeb5e8bdd717b04
refs/heads/master: 46267f4caa5fdf546a94b99b4c53c9424d2d4291
6 changes: 3 additions & 3 deletions trunk/drivers/net/irda/stir4200.c
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ static int stir_net_open(struct net_device *netdev)
sprintf(hwname, "usb#%d", stir->usbdev->devnum);
stir->irlap = irlap_open(netdev, &stir->qos, hwname);
if (!stir->irlap) {
err("stir4200: irlap_open failed");
dev_err(&stir->usbdev->dev, "irlap_open failed\n");
goto err_out5;
}

Expand All @@ -913,7 +913,7 @@ static int stir_net_open(struct net_device *netdev)
"%s", stir->netdev->name);
if (IS_ERR(stir->thread)) {
err = PTR_ERR(stir->thread);
err("stir4200: unable to start kernel thread");
dev_err(&stir->usbdev->dev, "unable to start kernel thread\n");
goto err_out6;
}

Expand Down Expand Up @@ -1042,7 +1042,7 @@ static int stir_probe(struct usb_interface *intf,

ret = usb_reset_configuration(dev);
if (ret != 0) {
err("stir4200: usb reset configuration failed");
dev_err(&intf->dev, "usb reset configuration failed\n");
goto err_out2;
}

Expand Down

0 comments on commit ee02084

Please sign in to comment.