Commit 14bca6c3 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

i2o: remove extraneous kernel-doc

Remove excess kernel-doc function parameter notation from i2o/.

Warning(drivers/message/i2o/iop.c:64): Excess function parameter 'msg' description in 'i2o_msg_get_wait'
Warning(drivers/message/i2o/device.c:62): Excess function parameter 'drv' description in 'i2o_device_claim'
Warning(drivers/message/i2o/device.c:95): Excess function parameter 'drv' description in 'i2o_device_claim_release'
Warning(drivers/message/i2o/driver.c:186): Excess function parameter 'msg' description in 'i2o_driver_dispatch'
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f24659d9
...@@ -52,7 +52,6 @@ static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd, ...@@ -52,7 +52,6 @@ static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd,
/** /**
* i2o_device_claim - claim a device for use by an OSM * i2o_device_claim - claim a device for use by an OSM
* @dev: I2O device to claim * @dev: I2O device to claim
* @drv: I2O driver which wants to claim the device
* *
* Do the leg work to assign a device to a given OSM. If the claim succeeds, * Do the leg work to assign a device to a given OSM. If the claim succeeds,
* the owner is the primary. If the attempt fails a negative errno code * the owner is the primary. If the attempt fails a negative errno code
...@@ -80,7 +79,6 @@ int i2o_device_claim(struct i2o_device *dev) ...@@ -80,7 +79,6 @@ int i2o_device_claim(struct i2o_device *dev)
/** /**
* i2o_device_claim_release - release a device that the OSM is using * i2o_device_claim_release - release a device that the OSM is using
* @dev: device to release * @dev: device to release
* @drv: driver which claimed the device
* *
* Drop a claim by an OSM on a given I2O device. * Drop a claim by an OSM on a given I2O device.
* *
......
...@@ -173,7 +173,6 @@ void i2o_driver_unregister(struct i2o_driver *drv) ...@@ -173,7 +173,6 @@ void i2o_driver_unregister(struct i2o_driver *drv)
* i2o_driver_dispatch - dispatch an I2O reply message * i2o_driver_dispatch - dispatch an I2O reply message
* @c: I2O controller of the message * @c: I2O controller of the message
* @m: I2O message number * @m: I2O message number
* @msg: I2O message to be delivered
* *
* The reply is delivered to the driver from which the original message * The reply is delivered to the driver from which the original message
* was. This function is only called from interrupt context. * was. This function is only called from interrupt context.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment