projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91be260
)
[media] media: rc: nuvoton: mark wakeup-related resources
author
Heiner Kallweit
<hkallweit1@gmail.com>
Fri, 27 Nov 2015 21:38:44 +0000
(19:38 -0200)
committer
Mauro Carvalho Chehab
<mchehab@osg.samsung.com>
Mon, 25 Jan 2016 14:32:42 +0000
(12:32 -0200)
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: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/rc/nuvoton-cir.c
patch
|
blob
|
history
diff --git
a/drivers/media/rc/nuvoton-cir.c
b/drivers/media/rc/nuvoton-cir.c
index 18adf580f502443bafc7c0e310d2556e5908f7dc..081435cda30c3c8f41a90783b816c5e4de9adbba 100644
(file)
--- a/
drivers/media/rc/nuvoton-cir.c
+++ b/
drivers/media/rc/nuvoton-cir.c
@@
-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);