|
@@ -1655,6 +1655,27 @@ void cnss_pci_unlock_reg_window(struct device *dev, unsigned long *flags)
|
|
|
}
|
|
|
EXPORT_SYMBOL(cnss_pci_unlock_reg_window);
|
|
|
|
|
|
+int cnss_get_pci_slot(struct device *dev)
|
|
|
+{
|
|
|
+ struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
|
+ struct cnss_pci_data *pci_priv = cnss_get_pci_priv(pci_dev);
|
|
|
+ struct cnss_plat_data *plat_priv = NULL;
|
|
|
+
|
|
|
+ if (!pci_priv) {
|
|
|
+ cnss_pr_err("pci_priv is NULL\n");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ plat_priv = pci_priv->plat_priv;
|
|
|
+ if (!plat_priv) {
|
|
|
+ cnss_pr_err("plat_priv is NULL\n");
|
|
|
+ return -ENODEV;
|
|
|
+ }
|
|
|
+
|
|
|
+ return plat_priv->rc_num;
|
|
|
+}
|
|
|
+EXPORT_SYMBOL(cnss_get_pci_slot);
|
|
|
+
|
|
|
/**
|
|
|
* cnss_pci_dump_bl_sram_mem - Dump WLAN device bootloader debug log
|
|
|
* @pci_priv: driver PCI bus context pointer
|