[media] media: rc: nuvoton-cir: add support for the NCT6779D
authorHeiner Kallweit <hkallweit1@gmail.com>
Thu, 29 Oct 2015 21:22:23 +0000 (19:22 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 19 Nov 2015 11:36:15 +0000 (09:36 -0200)
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>
drivers/media/rc/nuvoton-cir.c
drivers/media/rc/nuvoton-cir.h

index df4b9cbba6007deb40d03001a2d087df08729453..ff874fcae7d6492f99f98ec56c8eed2afd2d1423 100644 (file)
@@ -43,6 +43,7 @@ static const struct nvt_chip nvt_chips[] = {
        { "w83667hg", NVT_W83667HG },
        { "NCT6775F", NVT_6775F },
        { "NCT6776F", NVT_6776F },
+       { "NCT6779D", NVT_6779D },
 };
 
 static inline bool is_w83667hg(struct nvt_dev *nvt)
index 81b5a09abd3c3ae4741374d77b91757a22cfa277..c96a9d30fa23573f399d0e3492dc4de2e0cb0f64 100644 (file)
@@ -70,7 +70,8 @@ enum nvt_chip_ver {
        NVT_UNKNOWN     = 0,
        NVT_W83667HG    = 0xa510,
        NVT_6775F       = 0xb470,
-       NVT_6776F       = 0xc330
+       NVT_6776F       = 0xc330,
+       NVT_6779D       = 0xc560
 };
 
 struct nvt_chip {
This page took 0.026845 seconds and 5 git commands to generate.