Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] media: rc: nuvoton-cir: add support for the NCT6779D

Add support for the NCT6779D. It's found e.g. on the Zotac CI321 mini-pc
and I successfully tested it on this device.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

authored by

Heiner Kallweit and committed by
Mauro Carvalho Chehab
d0b528d5 6a5a3360

+3 -1
+1
drivers/media/rc/nuvoton-cir.c
··· 43 43 { "w83667hg", NVT_W83667HG }, 44 44 { "NCT6775F", NVT_6775F }, 45 45 { "NCT6776F", NVT_6776F }, 46 + { "NCT6779D", NVT_6779D }, 46 47 }; 47 48 48 49 static inline bool is_w83667hg(struct nvt_dev *nvt)
+2 -1
drivers/media/rc/nuvoton-cir.h
··· 70 70 NVT_UNKNOWN = 0, 71 71 NVT_W83667HG = 0xa510, 72 72 NVT_6775F = 0xb470, 73 - NVT_6776F = 0xc330 73 + NVT_6776F = 0xc330, 74 + NVT_6779D = 0xc560 74 75 }; 75 76 76 77 struct nvt_chip {