mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
s390/vmur: Link parent CCW device during UR device creation
When creating the virtual unit record (UR) device, specify the parent CCW device. Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
df32e43a54
commit
964c150e99
@ -922,8 +922,8 @@ static int ur_set_online(struct ccw_device *cdev)
|
|||||||
goto fail_free_cdev;
|
goto fail_free_cdev;
|
||||||
}
|
}
|
||||||
|
|
||||||
urd->device = device_create(vmur_class, NULL, urd->char_device->dev,
|
urd->device = device_create(vmur_class, &cdev->dev,
|
||||||
NULL, "%s", node_id);
|
urd->char_device->dev, NULL, "%s", node_id);
|
||||||
if (IS_ERR(urd->device)) {
|
if (IS_ERR(urd->device)) {
|
||||||
rc = PTR_ERR(urd->device);
|
rc = PTR_ERR(urd->device);
|
||||||
TRACE("ur_set_online: device_create rc=%d\n", rc);
|
TRACE("ur_set_online: device_create rc=%d\n", rc);
|
||||||
|
Loading…
Reference in New Issue
Block a user