diff options
Diffstat (limited to 'drivers/s390/cio/device_id.c')
-rw-r--r-- | drivers/s390/cio/device_id.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/s390/cio/device_id.c b/drivers/s390/cio/device_id.c index 0e68fb511dc9..207881ec7aaf 100644 --- a/drivers/s390/cio/device_id.c +++ b/drivers/s390/cio/device_id.c | |||
@@ -258,7 +258,7 @@ ccw_device_check_sense_id(struct ccw_device *cdev) | |||
258 | */ | 258 | */ |
259 | CIO_MSG_EVENT(2, "SenseID : device %04x on Subchannel %04x " | 259 | CIO_MSG_EVENT(2, "SenseID : device %04x on Subchannel %04x " |
260 | "reports cmd reject\n", | 260 | "reports cmd reject\n", |
261 | cdev->private->devno, sch->irq); | 261 | cdev->private->devno, sch->schid.sch_no); |
262 | return -EOPNOTSUPP; | 262 | return -EOPNOTSUPP; |
263 | } | 263 | } |
264 | if (irb->esw.esw0.erw.cons) { | 264 | if (irb->esw.esw0.erw.cons) { |
@@ -280,13 +280,13 @@ ccw_device_check_sense_id(struct ccw_device *cdev) | |||
280 | CIO_MSG_EVENT(2, "SenseID : path %02X for device %04x on" | 280 | CIO_MSG_EVENT(2, "SenseID : path %02X for device %04x on" |
281 | " subchannel %04x is 'not operational'\n", | 281 | " subchannel %04x is 'not operational'\n", |
282 | sch->orb.lpm, cdev->private->devno, | 282 | sch->orb.lpm, cdev->private->devno, |
283 | sch->irq); | 283 | sch->schid.sch_no); |
284 | return -EACCES; | 284 | return -EACCES; |
285 | } | 285 | } |
286 | /* Hmm, whatever happened, try again. */ | 286 | /* Hmm, whatever happened, try again. */ |
287 | CIO_MSG_EVENT(2, "SenseID : start_IO() for device %04x on " | 287 | CIO_MSG_EVENT(2, "SenseID : start_IO() for device %04x on " |
288 | "subchannel %04x returns status %02X%02X\n", | 288 | "subchannel %04x returns status %02X%02X\n", |
289 | cdev->private->devno, sch->irq, | 289 | cdev->private->devno, sch->schid.sch_no, |
290 | irb->scsw.dstat, irb->scsw.cstat); | 290 | irb->scsw.dstat, irb->scsw.cstat); |
291 | return -EAGAIN; | 291 | return -EAGAIN; |
292 | } | 292 | } |