diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-07-03 12:02:37 -0400 |
---|---|---|
committer | Ben Collins <bcollins@ubuntu.com> | 2006-07-03 12:02:37 -0400 |
commit | 3c6c65f5ed5a6d307bd607aecd06d658c0934d88 (patch) | |
tree | d15d8997a2a6b1e2c339a1cf26cc7cfaa6d72eb0 /drivers/ieee1394 | |
parent | cab8d154e2ed43fe1495aa0e18103e747552891b (diff) |
[PATCH] ieee1394: fix kerneldoc of hpsb_alloc_host
There was stuff between the comment and the function.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
Diffstat (limited to 'drivers/ieee1394')
-rw-r--r-- | drivers/ieee1394/hosts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ieee1394/hosts.c b/drivers/ieee1394/hosts.c index 2c669287f5bd..3ed56be8706c 100644 --- a/drivers/ieee1394/hosts.c +++ b/drivers/ieee1394/hosts.c | |||
@@ -90,6 +90,8 @@ static int alloc_hostnum_cb(struct hpsb_host *host, void *__data) | |||
90 | return 0; | 90 | return 0; |
91 | } | 91 | } |
92 | 92 | ||
93 | static DEFINE_MUTEX(host_num_alloc); | ||
94 | |||
93 | /** | 95 | /** |
94 | * hpsb_alloc_host - allocate a new host controller. | 96 | * hpsb_alloc_host - allocate a new host controller. |
95 | * @drv: the driver that will manage the host controller | 97 | * @drv: the driver that will manage the host controller |
@@ -105,8 +107,6 @@ static int alloc_hostnum_cb(struct hpsb_host *host, void *__data) | |||
105 | * Return Value: a pointer to the &hpsb_host if successful, %NULL if | 107 | * Return Value: a pointer to the &hpsb_host if successful, %NULL if |
106 | * no memory was available. | 108 | * no memory was available. |
107 | */ | 109 | */ |
108 | static DEFINE_MUTEX(host_num_alloc); | ||
109 | |||
110 | struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra, | 110 | struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra, |
111 | struct device *dev) | 111 | struct device *dev) |
112 | { | 112 | { |