From 5914d7113ecf77de63eb21fc233684d1a1a52ca5 Mon Sep 17 00:00:00 2001 From: Robert Marko Date: Fri, 6 Jan 2023 10:56:54 +0100 Subject: iwinfo: devices: add Qualcomm Atheros IPQ8074 WiSoC Add detection of the Qualcomm Atheros IPQ8074 WiSoC using the compatible string from device tree. Signed-off-by: Robert Marko --- iwinfo_nl80211.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'iwinfo_nl80211.c') diff --git a/iwinfo_nl80211.c b/iwinfo_nl80211.c index a78343f..916192f 100644 --- a/iwinfo_nl80211.c +++ b/iwinfo_nl80211.c @@ -3491,6 +3491,11 @@ static int nl80211_hardware_id_from_fdt(struct iwinfo_hardware_id *id, const cha id->device_id = 0x003c; id->subsystem_vendor_id = 0x168c; id->subsystem_device_id = 0x4019; + } else if (!strcmp(compat, "qcom,ipq8074-wifi")) { + id->vendor_id = 0x168c; + id->device_id = 0x8074; + id->subsystem_vendor_id = 0x168c; + id->subsystem_device_id = 0x8074; } else if (!strcmp(compat, "mediatek,mt7622-wmac")) { id->vendor_id = 0x14c3; id->device_id = 0x7622; -- cgit v1.2.1