@@ -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;
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(+)