Make use of the recently introduced functionality to expose raw packet data via sysfs. Signed-off-by: Heiner Kallweit <hkallweit1@xxxxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html