diff --git a/drivers/mge-hid.c b/drivers/mge-hid.c index 89181ff264..47daf7a3e3 100644 --- a/drivers/mge-hid.c +++ b/drivers/mge-hid.c @@ -2227,6 +2227,15 @@ static int mge_claim(HIDDevice_t *hd) { /* Let liebert-hid grab this */ return 0; + case KSTAR_VENDORID: + if (hd->Vendor && strstr(hd->Vendor, "KSTAR")) { + return 1; + } + + /* So far we only heard of KSTAR using this ID + * in some models (or MGE 0x0463 originally) */ + return 0; + default: /* Valid for Eaton */ /* by default, reject, unless the productid option is given */ if (getval("productid")) { @@ -2251,6 +2260,15 @@ static int mge_claim(HIDDevice_t *hd) { /* Let liebert-hid grab this */ return 0; + case KSTAR_VENDORID: + if (hd->Vendor && strstr(hd->Vendor, "KSTAR")) { + return 1; + } + + /* So far we only heard of KSTAR using this ID + * in some models (or MGE 0x0463 originally) */ + return 0; + default: break; }