diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/s390/cio/device_ops.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/s390/cio/device_ops.c b/drivers/s390/cio/device_ops.c index ec7fb6d3b479..2ad832f8e340 100644 --- a/drivers/s390/cio/device_ops.c +++ b/drivers/s390/cio/device_ops.c | |||
@@ -763,6 +763,18 @@ _ccw_device_get_subchannel_number(struct ccw_device *cdev) | |||
763 | return cdev->private->schid.sch_no; | 763 | return cdev->private->schid.sch_no; |
764 | } | 764 | } |
765 | 765 | ||
766 | /** | ||
767 | * ccw_device_get_schid - obtain a subchannel id | ||
768 | * @cdev: device to obtain the id for | ||
769 | * @schid: where to fill in the values | ||
770 | */ | ||
771 | void ccw_device_get_schid(struct ccw_device *cdev, struct subchannel_id *schid) | ||
772 | { | ||
773 | struct subchannel *sch = to_subchannel(cdev->dev.parent); | ||
774 | |||
775 | *schid = sch->schid; | ||
776 | } | ||
777 | EXPORT_SYMBOL_GPL(ccw_device_get_schid); | ||
766 | 778 | ||
767 | MODULE_LICENSE("GPL"); | 779 | MODULE_LICENSE("GPL"); |
768 | EXPORT_SYMBOL(ccw_device_set_options_mask); | 780 | EXPORT_SYMBOL(ccw_device_set_options_mask); |