diff options
author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2007-10-12 10:11:21 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-10-12 10:13:01 -0400 |
commit | 958974fb596ad037fb571cf2899f783764a83e1a (patch) | |
tree | d3564986786ef55ee3ee5629dfa46901efa3f09b /drivers/s390/cio | |
parent | a55360df406cca797ac07d722688dd7ec29bf46e (diff) |
[S390] cio: Introduce ccw_bus_type.shutdown.
Introduce a shutdown method for the ccw bus that calls the driver
specific shutdown method in struct ccw_driver.
Switch zfcp to the new ccw_driver shutdown method.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/cio')
-rw-r--r-- | drivers/s390/cio/device.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/s390/cio/device.c b/drivers/s390/cio/device.c index 3943a4fde22a..7fb271c60c27 100644 --- a/drivers/s390/cio/device.c +++ b/drivers/s390/cio/device.c | |||
@@ -1433,12 +1433,22 @@ ccw_device_remove (struct device *dev) | |||
1433 | return 0; | 1433 | return 0; |
1434 | } | 1434 | } |
1435 | 1435 | ||
1436 | static void ccw_device_shutdown(struct device *dev) | ||
1437 | { | ||
1438 | struct ccw_device *cdev; | ||
1439 | |||
1440 | cdev = to_ccwdev(dev); | ||
1441 | if (cdev->drv && cdev->drv->shutdown) | ||
1442 | cdev->drv->shutdown(cdev); | ||
1443 | } | ||
1444 | |||
1436 | struct bus_type ccw_bus_type = { | 1445 | struct bus_type ccw_bus_type = { |
1437 | .name = "ccw", | 1446 | .name = "ccw", |
1438 | .match = ccw_bus_match, | 1447 | .match = ccw_bus_match, |
1439 | .uevent = ccw_uevent, | 1448 | .uevent = ccw_uevent, |
1440 | .probe = ccw_device_probe, | 1449 | .probe = ccw_device_probe, |
1441 | .remove = ccw_device_remove, | 1450 | .remove = ccw_device_remove, |
1451 | .shutdown = ccw_device_shutdown, | ||
1442 | }; | 1452 | }; |
1443 | 1453 | ||
1444 | /** | 1454 | /** |