Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324771
b: refs/heads/master
c: c2e114d
h: refs/heads/master
i:
  324769: 7f4ff30
  324767: 67b35ff
v: v3
  • Loading branch information
Alexey Khoroshilov authored and Greg Kroah-Hartman committed Sep 4, 2012
1 parent 5cbed63 commit c4e9e59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: d7b990a035a86a07e81231caceb6e624056c258f
refs/heads/master: c2e114db5a2c02b5b148cf8db88c4a0d7c8ffb56
8 changes: 4 additions & 4 deletions trunk/drivers/staging/bcm/InterfaceInit.c
Original file line number Diff line number Diff line change
Expand Up @@ -671,18 +671,18 @@ static __init int bcm_init(void)
{
int retval;

printk(KERN_INFO "%s: %s, %s\n", DRV_NAME, DRV_DESCRIPTION, DRV_VERSION);
printk(KERN_INFO "%s\n", DRV_COPYRIGHT);
pr_info("%s: %s, %s\n", DRV_NAME, DRV_DESCRIPTION, DRV_VERSION);
pr_info("%s\n", DRV_COPYRIGHT);

bcm_class = class_create(THIS_MODULE, DRV_NAME);
if (IS_ERR(bcm_class)) {
printk(KERN_ERR DRV_NAME ": could not create class\n");
pr_err(DRV_NAME ": could not create class\n");
return PTR_ERR(bcm_class);
}

retval = usb_register(&usbbcm_driver);
if (retval < 0) {
printk(KERN_ERR DRV_NAME ": could not register usb driver\n");
pr_err(DRV_NAME ": could not register usb driver\n");
class_destroy(bcm_class);
return retval;
}
Expand Down

0 comments on commit c4e9e59

Please sign in to comment.