All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/3] media: rc: nuvoton: expose most recent raw packet via sysfs
@ 2016-02-07 20:14 Heiner Kallweit
  0 siblings, 0 replies; only message in thread
From: Heiner Kallweit @ 2016-02-07 20:14 UTC (permalink / raw
  To: Mauro Carvalho Chehab; +Cc: linux-media

Make use of the recently introduced functionality to expose raw packet data
via sysfs.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
 drivers/media/rc/nuvoton-cir.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/media/rc/nuvoton-cir.c b/drivers/media/rc/nuvoton-cir.c
index c96da3a..4b97a6f 100644
--- a/drivers/media/rc/nuvoton-cir.c
+++ b/drivers/media/rc/nuvoton-cir.c
@@ -692,6 +692,7 @@ static void nvt_process_rx_ir_data(struct nvt_dev *nvt)
 
 	for (i = 0; i < nvt->pkts; i++) {
 		sample = nvt->buf[i];
+		ir_raw_store_sysfs_lrp(nvt->rdev, sample);
 
 		rawir.pulse = ((sample & BUF_PULSE_BIT) != 0);
 		rawir.duration = US_TO_NS((sample & BUF_LEN_MASK)
@@ -1102,6 +1103,7 @@ static int nvt_probe(struct pnp_dev *pdev, const struct pnp_device_id *dev_id)
 	rdev->timeout = MS_TO_NS(100);
 	/* rx resolution is hardwired to 50us atm, 1, 25, 100 also possible */
 	rdev->rx_resolution = US_TO_NS(CIR_SAMPLE_PERIOD);
+	rdev->enable_sysfs_lrp = true;
 #if 0
 	rdev->min_timeout = XYZ;
 	rdev->max_timeout = XYZ;
-- 
2.7.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-02-07 20:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-07 20:14 [PATCH 3/3] media: rc: nuvoton: expose most recent raw packet via sysfs Heiner Kallweit

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.