Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35c415b4 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ath10k: add WCN3990 target type and hw version"

parents f4396ba8 33d81321
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -74,6 +74,7 @@ struct ath10k;
enum ath10k_bus {
	ATH10K_BUS_PCI,
	ATH10K_BUS_AHB,
	ATH10K_BUS_SNOC,
};

static inline const char *ath10k_bus_str(enum ath10k_bus bus)
@@ -83,6 +84,8 @@ static inline const char *ath10k_bus_str(enum ath10k_bus bus)
		return "pci";
	case ATH10K_BUS_AHB:
		return "ahb";
	case ATH10K_BUS_SNOC:
		return "snoc";
	}

	return "unknown";
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ enum ath10k_debug_mask {
	ATH10K_DBG_WMI_PRINT	= 0x00002000,
	ATH10K_DBG_PCI_PS	= 0x00004000,
	ATH10K_DBG_AHB		= 0x00008000,
	ATH10K_DBG_SNOC		= 0x00009000,
	ATH10K_DBG_ANY		= 0xffffffff,
};

+1 −0
Original line number Diff line number Diff line
@@ -224,6 +224,7 @@ enum ath10k_hw_rev {
	ATH10K_HW_QCA9377,
	ATH10K_HW_QCA4019,
	ATH10K_HW_QCA9887,
	ATH10K_HW_WCN3990,
};

struct ath10k_hw_regs {