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

Commit 33cb5401 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by Mauro Carvalho Chehab
Browse files

[media] media: rc: nuvoton: mark wakeup-related resources



When requesting resources use different names for the normal and
the wakeup part. This makes it easier to interpret the output
of e.g. /proc/interrupts and /proc/ioports.

Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 91be260f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1079,12 +1079,12 @@ static int nvt_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id)
		goto exit_unregister_device;

	if (!devm_request_region(&pdev->dev, nvt->cir_wake_addr,
			    CIR_IOREG_LENGTH, NVT_DRIVER_NAME))
			    CIR_IOREG_LENGTH, NVT_DRIVER_NAME "-wake"))
		goto exit_unregister_device;

	if (devm_request_irq(&pdev->dev, nvt->cir_wake_irq,
			     nvt_cir_wake_isr, IRQF_SHARED,
			     NVT_DRIVER_NAME, (void *)nvt))
			     NVT_DRIVER_NAME "-wake", (void *)nvt))
		goto exit_unregister_device;

	device_init_wakeup(&pdev->dev, true);