diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-12-06 23:38:43 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:40 -0500 |
commit | d9489fb60614794cbca4b6b173c60ed9388974c6 (patch) | |
tree | fce67aa376841050cec0007f2a47b568286c025a /drivers/message/i2o/device.c | |
parent | da39aa8fbc031029b1f06f1abf2a933e1042fe99 (diff) |
[PATCH] kernel-doc: fix fusion and i2o docs
Correct lots of typos, kernel-doc warnings, & kernel-doc usage in fusion and
i2o drivers.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/message/i2o/device.c')
-rw-r--r-- | drivers/message/i2o/device.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/message/i2o/device.c b/drivers/message/i2o/device.c index 55757af4e3b2..b9df143e4ff1 100644 --- a/drivers/message/i2o/device.c +++ b/drivers/message/i2o/device.c | |||
@@ -54,8 +54,8 @@ static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd, | |||
54 | * @dev: I2O device to claim | 54 | * @dev: I2O device to claim |
55 | * @drv: I2O driver which wants to claim the device | 55 | * @drv: I2O driver which wants to claim the device |
56 | * | 56 | * |
57 | * Do the leg work to assign a device to a given OSM. If the claim succeed | 57 | * Do the leg work to assign a device to a given OSM. If the claim succeeds, |
58 | * the owner of the rimary. If the attempt fails a negative errno code | 58 | * the owner is the primary. If the attempt fails a negative errno code |
59 | * is returned. On success zero is returned. | 59 | * is returned. On success zero is returned. |
60 | */ | 60 | */ |
61 | int i2o_device_claim(struct i2o_device *dev) | 61 | int i2o_device_claim(struct i2o_device *dev) |
@@ -208,7 +208,7 @@ static struct i2o_device *i2o_device_alloc(void) | |||
208 | 208 | ||
209 | /** | 209 | /** |
210 | * i2o_device_add - allocate a new I2O device and add it to the IOP | 210 | * i2o_device_add - allocate a new I2O device and add it to the IOP |
211 | * @iop: I2O controller where the device is on | 211 | * @c: I2O controller that the device is on |
212 | * @entry: LCT entry of the I2O device | 212 | * @entry: LCT entry of the I2O device |
213 | * | 213 | * |
214 | * Allocate a new I2O device and initialize it with the LCT entry. The | 214 | * Allocate a new I2O device and initialize it with the LCT entry. The |
@@ -280,7 +280,7 @@ err: | |||
280 | 280 | ||
281 | /** | 281 | /** |
282 | * i2o_device_remove - remove an I2O device from the I2O core | 282 | * i2o_device_remove - remove an I2O device from the I2O core |
283 | * @dev: I2O device which should be released | 283 | * @i2o_dev: I2O device which should be released |
284 | * | 284 | * |
285 | * Is used on I2O controller removal or LCT modification, when the device | 285 | * Is used on I2O controller removal or LCT modification, when the device |
286 | * is removed from the system. Note that the device could still hang | 286 | * is removed from the system. Note that the device could still hang |