Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 283fdd0b authored by Cornelia Huck's avatar Cornelia Huck Committed by Martin Schwidefsky
Browse files

[S390] cio: Dont call ->release directly.



Just put the cdev's reference count to give up our reference.

Signed-off-by: default avatarCornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 90ed2b69
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -751,8 +751,8 @@ static int io_subchannel_initialize_dev(struct subchannel *sch,
	/* Do first half of device_register. */
	device_initialize(&cdev->dev);
	if (!get_device(&sch->dev)) {
		if (cdev->dev.release)
			cdev->dev.release(&cdev->dev);
		/* Release reference from device_initialize(). */
		put_device(&cdev->dev);
		return -ENODEV;
	}
	return 0;