From 46f04f3808e8b8c9608d0974c4cede1e78110b7f Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Mon, 25 Jul 2022 04:17:44 +0200 Subject: devices: add MediaTek MT7986 WiSoC Add detection of the MediaTek MT7986 WiSoC using the compatible string from device tree. Signed-off-by: Daniel Golle --- iwinfo_nl80211.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'iwinfo_nl80211.c') diff --git a/iwinfo_nl80211.c b/iwinfo_nl80211.c index 30da680..d7fbd1e 100644 --- a/iwinfo_nl80211.c +++ b/iwinfo_nl80211.c @@ -3410,7 +3410,13 @@ static int nl80211_hardware_id_from_fdt(struct iwinfo_hardware_id *id, const cha id->device_id = 0x7622; id->subsystem_vendor_id = 0x14c3; id->subsystem_device_id = 0x7622; + } else if (!strcmp(compat, "mediatek,mt7986-wmac")) { + id->vendor_id = 0x14c3; + id->device_id = 0x7986; + id->subsystem_vendor_id = 0x14c3; + id->subsystem_device_id = 0x7986; } + return (id->vendor_id && id->device_id) ? 0 : -1; } -- cgit v1.2.1