Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259484
b: refs/heads/master
c: 27ed5da
h: refs/heads/master
v: v3
  • Loading branch information
matt mooney authored and Greg Kroah-Hartman committed Jun 7, 2011
1 parent efd8a0f commit e23965e
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: 41e02f011648b9b338d3dc1121eb3da9cfbf312c
refs/heads/master: 27ed5da0b626680ddc1670e7b6cc106472ac14c4
8 changes: 4 additions & 4 deletions trunk/drivers/staging/usbip/stub_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ void stub_device_cleanup_urbs(struct stub_device *sdev)
}
}

static int __init usb_stub_init(void)
static int __init usbip_host_init(void)
{
int ret;

Expand Down Expand Up @@ -281,7 +281,7 @@ static int __init usb_stub_init(void)
return ret;
}

static void __exit usb_stub_exit(void)
static void __exit usbip_host_exit(void)
{
driver_remove_file(&stub_driver.drvwrap.driver,
&driver_attr_match_busid);
Expand All @@ -295,8 +295,8 @@ static void __exit usb_stub_exit(void)
kmem_cache_destroy(stub_priv_cache);
}

module_init(usb_stub_init);
module_exit(usb_stub_exit);
module_init(usbip_host_init);
module_exit(usbip_host_exit);

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
Expand Down

0 comments on commit e23965e

Please sign in to comment.