diff options
Diffstat (limited to 'drivers/message/i2o/exec-osm.c')
-rw-r--r-- | drivers/message/i2o/exec-osm.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/message/i2o/exec-osm.c b/drivers/message/i2o/exec-osm.c index 9e529d8dd5cb..902753b2c661 100644 --- a/drivers/message/i2o/exec-osm.c +++ b/drivers/message/i2o/exec-osm.c | |||
@@ -94,8 +94,8 @@ static struct i2o_exec_wait *i2o_exec_wait_alloc(void) | |||
94 | }; | 94 | }; |
95 | 95 | ||
96 | /** | 96 | /** |
97 | * i2o_exec_wait_free - Free a i2o_exec_wait struct | 97 | * i2o_exec_wait_free - Free an i2o_exec_wait struct |
98 | * @i2o_exec_wait: I2O wait data which should be cleaned up | 98 | * @wait: I2O wait data which should be cleaned up |
99 | */ | 99 | */ |
100 | static void i2o_exec_wait_free(struct i2o_exec_wait *wait) | 100 | static void i2o_exec_wait_free(struct i2o_exec_wait *wait) |
101 | { | 101 | { |
@@ -105,7 +105,7 @@ static void i2o_exec_wait_free(struct i2o_exec_wait *wait) | |||
105 | /** | 105 | /** |
106 | * i2o_msg_post_wait_mem - Post and wait a message with DMA buffers | 106 | * i2o_msg_post_wait_mem - Post and wait a message with DMA buffers |
107 | * @c: controller | 107 | * @c: controller |
108 | * @m: message to post | 108 | * @msg: message to post |
109 | * @timeout: time in seconds to wait | 109 | * @timeout: time in seconds to wait |
110 | * @dma: i2o_dma struct of the DMA buffer to free on failure | 110 | * @dma: i2o_dma struct of the DMA buffer to free on failure |
111 | * | 111 | * |
@@ -269,6 +269,7 @@ static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m, | |||
269 | /** | 269 | /** |
270 | * i2o_exec_show_vendor_id - Displays Vendor ID of controller | 270 | * i2o_exec_show_vendor_id - Displays Vendor ID of controller |
271 | * @d: device of which the Vendor ID should be displayed | 271 | * @d: device of which the Vendor ID should be displayed |
272 | * @attr: device_attribute to display | ||
272 | * @buf: buffer into which the Vendor ID should be printed | 273 | * @buf: buffer into which the Vendor ID should be printed |
273 | * | 274 | * |
274 | * Returns number of bytes printed into buffer. | 275 | * Returns number of bytes printed into buffer. |
@@ -290,6 +291,7 @@ static ssize_t i2o_exec_show_vendor_id(struct device *d, | |||
290 | /** | 291 | /** |
291 | * i2o_exec_show_product_id - Displays Product ID of controller | 292 | * i2o_exec_show_product_id - Displays Product ID of controller |
292 | * @d: device of which the Product ID should be displayed | 293 | * @d: device of which the Product ID should be displayed |
294 | * @attr: device_attribute to display | ||
293 | * @buf: buffer into which the Product ID should be printed | 295 | * @buf: buffer into which the Product ID should be printed |
294 | * | 296 | * |
295 | * Returns number of bytes printed into buffer. | 297 | * Returns number of bytes printed into buffer. |
@@ -365,7 +367,7 @@ static int i2o_exec_remove(struct device *dev) | |||
365 | 367 | ||
366 | /** | 368 | /** |
367 | * i2o_exec_lct_modified - Called on LCT NOTIFY reply | 369 | * i2o_exec_lct_modified - Called on LCT NOTIFY reply |
368 | * @c: I2O controller on which the LCT has modified | 370 | * @work: work struct for a specific controller |
369 | * | 371 | * |
370 | * This function handles asynchronus LCT NOTIFY replies. It parses the | 372 | * This function handles asynchronus LCT NOTIFY replies. It parses the |
371 | * new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY | 373 | * new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY |