aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Ott <sebott@linux.vnet.ibm.com>2016-06-23 05:09:26 -0400
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2016-07-15 08:31:57 -0400
commit388b74d3a9f76abd349fe0b7ed8c58f88647111d (patch)
tree7b688bdd804d5abb842fa4292a79c7a79d7ce1e6
parent0f5d050ceaa31b2229102211d60c149f920df3aa (diff)
s390/cio/device_ops: fix kernel doc
Fix an incorrect kernel doc comment in device_ops.c. Also provide proper function markups while at it. Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r--drivers/s390/cio/device_ops.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/s390/cio/device_ops.c b/drivers/s390/cio/device_ops.c
index a69f702a2fcc..877d9f601e63 100644
--- a/drivers/s390/cio/device_ops.c
+++ b/drivers/s390/cio/device_ops.c
@@ -97,7 +97,7 @@ void ccw_device_clear_options(struct ccw_device *cdev, unsigned long flags)
97} 97}
98 98
99/** 99/**
100 * ccw_device_is_pathgroup - determine if paths to this device are grouped 100 * ccw_device_is_pathgroup() - determine if paths to this device are grouped
101 * @cdev: ccw device 101 * @cdev: ccw device
102 * 102 *
103 * Return non-zero if there is a path group, zero otherwise. 103 * Return non-zero if there is a path group, zero otherwise.
@@ -109,7 +109,7 @@ int ccw_device_is_pathgroup(struct ccw_device *cdev)
109EXPORT_SYMBOL(ccw_device_is_pathgroup); 109EXPORT_SYMBOL(ccw_device_is_pathgroup);
110 110
111/** 111/**
112 * ccw_device_is_multipath - determine if device is operating in multipath mode 112 * ccw_device_is_multipath() - determine if device is operating in multipath mode
113 * @cdev: ccw device 113 * @cdev: ccw device
114 * 114 *
115 * Return non-zero if device is operating in multipath mode, zero otherwise. 115 * Return non-zero if device is operating in multipath mode, zero otherwise.
@@ -457,7 +457,7 @@ __u8 ccw_device_get_path_mask(struct ccw_device *cdev)
457} 457}
458 458
459/** 459/**
460 * chp_get_chp_desc - return newly allocated channel-path descriptor 460 * ccw_device_get_chp_desc() - return newly allocated channel-path descriptor
461 * @cdev: device to obtain the descriptor for 461 * @cdev: device to obtain the descriptor for
462 * @chp_idx: index of the channel path 462 * @chp_idx: index of the channel path
463 * 463 *
@@ -477,7 +477,7 @@ struct channel_path_desc *ccw_device_get_chp_desc(struct ccw_device *cdev,
477} 477}
478 478
479/** 479/**
480 * ccw_device_get_id - obtain a ccw device id 480 * ccw_device_get_id() - obtain a ccw device id
481 * @cdev: device to obtain the id for 481 * @cdev: device to obtain the id for
482 * @dev_id: where to fill in the values 482 * @dev_id: where to fill in the values
483 */ 483 */
@@ -488,7 +488,7 @@ void ccw_device_get_id(struct ccw_device *cdev, struct ccw_dev_id *dev_id)
488EXPORT_SYMBOL(ccw_device_get_id); 488EXPORT_SYMBOL(ccw_device_get_id);
489 489
490/** 490/**
491 * ccw_device_tm_start_key - perform start function 491 * ccw_device_tm_start_key() - perform start function
492 * @cdev: ccw device on which to perform the start function 492 * @cdev: ccw device on which to perform the start function
493 * @tcw: transport-command word to be started 493 * @tcw: transport-command word to be started
494 * @intparm: user defined parameter to be passed to the interrupt handler 494 * @intparm: user defined parameter to be passed to the interrupt handler
@@ -533,7 +533,7 @@ int ccw_device_tm_start_key(struct ccw_device *cdev, struct tcw *tcw,
533EXPORT_SYMBOL(ccw_device_tm_start_key); 533EXPORT_SYMBOL(ccw_device_tm_start_key);
534 534
535/** 535/**
536 * ccw_device_tm_start_timeout_key - perform start function 536 * ccw_device_tm_start_timeout_key() - perform start function
537 * @cdev: ccw device on which to perform the start function 537 * @cdev: ccw device on which to perform the start function
538 * @tcw: transport-command word to be started 538 * @tcw: transport-command word to be started
539 * @intparm: user defined parameter to be passed to the interrupt handler 539 * @intparm: user defined parameter to be passed to the interrupt handler
@@ -559,7 +559,7 @@ int ccw_device_tm_start_timeout_key(struct ccw_device *cdev, struct tcw *tcw,
559EXPORT_SYMBOL(ccw_device_tm_start_timeout_key); 559EXPORT_SYMBOL(ccw_device_tm_start_timeout_key);
560 560
561/** 561/**
562 * ccw_device_tm_start - perform start function 562 * ccw_device_tm_start() - perform start function
563 * @cdev: ccw device on which to perform the start function 563 * @cdev: ccw device on which to perform the start function
564 * @tcw: transport-command word to be started 564 * @tcw: transport-command word to be started
565 * @intparm: user defined parameter to be passed to the interrupt handler 565 * @intparm: user defined parameter to be passed to the interrupt handler
@@ -577,7 +577,7 @@ int ccw_device_tm_start(struct ccw_device *cdev, struct tcw *tcw,
577EXPORT_SYMBOL(ccw_device_tm_start); 577EXPORT_SYMBOL(ccw_device_tm_start);
578 578
579/** 579/**
580 * ccw_device_tm_start_timeout - perform start function 580 * ccw_device_tm_start_timeout() - perform start function
581 * @cdev: ccw device on which to perform the start function 581 * @cdev: ccw device on which to perform the start function
582 * @tcw: transport-command word to be started 582 * @tcw: transport-command word to be started
583 * @intparm: user defined parameter to be passed to the interrupt handler 583 * @intparm: user defined parameter to be passed to the interrupt handler
@@ -596,7 +596,7 @@ int ccw_device_tm_start_timeout(struct ccw_device *cdev, struct tcw *tcw,
596EXPORT_SYMBOL(ccw_device_tm_start_timeout); 596EXPORT_SYMBOL(ccw_device_tm_start_timeout);
597 597
598/** 598/**
599 * ccw_device_get_mdc - accumulate max data count 599 * ccw_device_get_mdc() - accumulate max data count
600 * @cdev: ccw device for which the max data count is accumulated 600 * @cdev: ccw device for which the max data count is accumulated
601 * @mask: mask of paths to use 601 * @mask: mask of paths to use
602 * 602 *
@@ -642,7 +642,7 @@ int ccw_device_get_mdc(struct ccw_device *cdev, u8 mask)
642EXPORT_SYMBOL(ccw_device_get_mdc); 642EXPORT_SYMBOL(ccw_device_get_mdc);
643 643
644/** 644/**
645 * ccw_device_tm_intrg - perform interrogate function 645 * ccw_device_tm_intrg() - perform interrogate function
646 * @cdev: ccw device on which to perform the interrogate function 646 * @cdev: ccw device on which to perform the interrogate function
647 * 647 *
648 * Perform an interrogate function on the given ccw device. Return zero on 648 * Perform an interrogate function on the given ccw device. Return zero on
@@ -664,7 +664,7 @@ int ccw_device_tm_intrg(struct ccw_device *cdev)
664EXPORT_SYMBOL(ccw_device_tm_intrg); 664EXPORT_SYMBOL(ccw_device_tm_intrg);
665 665
666/** 666/**
667 * ccw_device_get_schid - obtain a subchannel id 667 * ccw_device_get_schid() - obtain a subchannel id
668 * @cdev: device to obtain the id for 668 * @cdev: device to obtain the id for
669 * @schid: where to fill in the values 669 * @schid: where to fill in the values
670 */ 670 */