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

Commit 2d8d72df authored by Frank Liu's avatar Frank Liu Committed by Gerrit - the friendly Code Review server
Browse files

net: cnss: Adjust probe sequence



Issue: on some msm platform, ethernet chip shares same
root complex with wlan chip, if ethernet chip probes before
wlan will cause wlan chip probes failure.

Adjust probe sequence to make wlan chip probed before
ethernet chip.

Change-Id: I12360b5aa1bc5477cb7d038bc2e737e51d90b69d
Signed-off-by: default avatarFrank Liu <qiliu@codeaurora.org>
parent 284629d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ obj-$(CONFIG_CAIF) += caif/
obj-$(CONFIG_CAN) += can/
obj-$(CONFIG_ETRAX_ETHERNET) += cris/
obj-$(CONFIG_NET_DSA) += dsa/
obj-$(CONFIG_ETHERNET) += ethernet/
obj-$(CONFIG_FDDI) += fddi/
obj-$(CONFIG_HIPPI) += hippi/
obj-$(CONFIG_HAMRADIO) += hamradio/
@@ -54,6 +53,7 @@ obj-$(CONFIG_NET_SB1000) += sb1000.o
obj-$(CONFIG_SUNGEM_PHY) += sungem_phy.o
obj-$(CONFIG_WAN) += wan/
obj-$(CONFIG_WLAN) += wireless/
obj-$(CONFIG_ETHERNET) += ethernet/
obj-$(CONFIG_WIMAX) += wimax/
obj-$(CONFIG_IEEE802154) += ieee802154/

+1 −1
Original line number Diff line number Diff line
@@ -3840,7 +3840,7 @@ int cnss_pcie_power_down(struct device *dev)
	return ret;
}

module_init(cnss_initialize);
fs_initcall(cnss_initialize);
module_exit(cnss_exit);

MODULE_LICENSE("GPL v2");