aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/s390/cio/device.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/s390/cio/device.c b/drivers/s390/cio/device.c
index 9adc11e8b8bc..1c2659766c09 100644
--- a/drivers/s390/cio/device.c
+++ b/drivers/s390/cio/device.c
@@ -252,6 +252,23 @@ cutype_show (struct device *dev, struct device_attribute *attr, char *buf)
252} 252}
253 253
254static ssize_t 254static ssize_t
255modalias_show (struct device *dev, struct device_attribute *attr, char *buf)
256{
257 struct ccw_device *cdev = to_ccwdev(dev);
258 struct ccw_device_id *id = &(cdev->id);
259 int ret;
260
261 ret = sprintf(buf, "ccw:t%04Xm%02x",
262 id->cu_type, id->cu_model);
263 if (id->dev_type != 0)
264 ret += sprintf(buf + ret, "dt%04Xdm%02X\n",
265 id->dev_type, id->dev_model);
266 else
267 ret += sprintf(buf + ret, "dtdm\n");
268 return ret;
269}
270
271static ssize_t
255online_show (struct device *dev, struct device_attribute *attr, char *buf) 272online_show (struct device *dev, struct device_attribute *attr, char *buf)
256{ 273{
257 struct ccw_device *cdev = to_ccwdev(dev); 274 struct ccw_device *cdev = to_ccwdev(dev);
@@ -448,6 +465,7 @@ static DEVICE_ATTR(chpids, 0444, chpids_show, NULL);
448static DEVICE_ATTR(pimpampom, 0444, pimpampom_show, NULL); 465static DEVICE_ATTR(pimpampom, 0444, pimpampom_show, NULL);
449static DEVICE_ATTR(devtype, 0444, devtype_show, NULL); 466static DEVICE_ATTR(devtype, 0444, devtype_show, NULL);
450static DEVICE_ATTR(cutype, 0444, cutype_show, NULL); 467static DEVICE_ATTR(cutype, 0444, cutype_show, NULL);
468static DEVICE_ATTR(modalias, 0444, modalias_show, NULL);
451static DEVICE_ATTR(online, 0644, online_show, online_store); 469static DEVICE_ATTR(online, 0644, online_show, online_store);
452extern struct device_attribute dev_attr_cmb_enable; 470extern struct device_attribute dev_attr_cmb_enable;
453static DEVICE_ATTR(availability, 0444, available_show, NULL); 471static DEVICE_ATTR(availability, 0444, available_show, NULL);
@@ -471,6 +489,7 @@ subchannel_add_files (struct device *dev)
471static struct attribute * ccwdev_attrs[] = { 489static struct attribute * ccwdev_attrs[] = {
472 &dev_attr_devtype.attr, 490 &dev_attr_devtype.attr,
473 &dev_attr_cutype.attr, 491 &dev_attr_cutype.attr,
492 &dev_attr_modalias.attr,
474 &dev_attr_online.attr, 493 &dev_attr_online.attr,
475 &dev_attr_cmb_enable.attr, 494 &dev_attr_cmb_enable.attr,
476 &dev_attr_availability.attr, 495 &dev_attr_availability.attr,