mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:01:13 +07:00
[S390] cio: Use device_is_registered().
Check if a ccw device is registered via device_is_registered() and not via the old kludge of checking the membership in driver core internal klists. Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
283fdd0b8a
commit
d6a30761d8
@ -965,7 +965,7 @@ io_subchannel_register(struct work_struct *work)
|
||||
* be registered). We need to reprobe since we may now have sense id
|
||||
* information.
|
||||
*/
|
||||
if (klist_node_attached(&cdev->dev.knode_parent)) {
|
||||
if (device_is_registered(&cdev->dev)) {
|
||||
if (!cdev->drv) {
|
||||
ret = device_reprobe(&cdev->dev);
|
||||
if (ret)
|
||||
|
Loading…
Reference in New Issue
Block a user