Commit 3a0861ff authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo

ath10k: remove ath10k_bus

It serves no purpose.
Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 671b96db
...@@ -441,7 +441,6 @@ static int ath10k_init_hw_params(struct ath10k *ar) ...@@ -441,7 +441,6 @@ static int ath10k_init_hw_params(struct ath10k *ar)
} }
struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev, struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev,
enum ath10k_bus bus,
const struct ath10k_hif_ops *hif_ops) const struct ath10k_hif_ops *hif_ops)
{ {
struct ath10k *ar; struct ath10k *ar;
...@@ -458,7 +457,6 @@ struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev, ...@@ -458,7 +457,6 @@ struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev,
ar->hif.priv = hif_priv; ar->hif.priv = hif_priv;
ar->hif.ops = hif_ops; ar->hif.ops = hif_ops;
ar->hif.bus = bus;
ar->free_vdev_map = 0xFF; /* 8 vdevs */ ar->free_vdev_map = 0xFF; /* 8 vdevs */
......
...@@ -43,10 +43,6 @@ ...@@ -43,10 +43,6 @@
struct ath10k; struct ath10k;
enum ath10k_bus {
ATH10K_BUS_PCI,
};
struct ath10k_skb_cb { struct ath10k_skb_cb {
dma_addr_t paddr; dma_addr_t paddr;
bool is_mapped; bool is_mapped;
...@@ -274,7 +270,6 @@ struct ath10k { ...@@ -274,7 +270,6 @@ struct ath10k {
struct { struct {
void *priv; void *priv;
enum ath10k_bus bus;
const struct ath10k_hif_ops *ops; const struct ath10k_hif_ops *ops;
} hif; } hif;
...@@ -356,7 +351,6 @@ struct ath10k { ...@@ -356,7 +351,6 @@ struct ath10k {
}; };
struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev, struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev,
enum ath10k_bus bus,
const struct ath10k_hif_ops *hif_ops); const struct ath10k_hif_ops *hif_ops);
void ath10k_core_destroy(struct ath10k *ar); void ath10k_core_destroy(struct ath10k *ar);
......
...@@ -2157,8 +2157,7 @@ static int ath10k_pci_probe(struct pci_dev *pdev, ...@@ -2157,8 +2157,7 @@ static int ath10k_pci_probe(struct pci_dev *pdev,
ath10k_pci_dump_features(ar_pci); ath10k_pci_dump_features(ar_pci);
ar = ath10k_core_create(ar_pci, ar_pci->dev, ATH10K_BUS_PCI, ar = ath10k_core_create(ar_pci, ar_pci->dev, &ath10k_pci_hif_ops);
&ath10k_pci_hif_ops);
if (!ar) { if (!ar) {
ath10k_err("ath10k_core_create failed!\n"); ath10k_err("ath10k_core_create failed!\n");
ret = -EINVAL; ret = -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment