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

Commit fdb1e28e authored by Xinming Hu's avatar Xinming Hu Committed by Kalle Valo
Browse files

mwifiex: fix missing debug messages



Some critical messages are missed until "adapter->dev"
gets initialized in mwifiex_register_dev().
We will use pr_* print message instead of mwifiex_dbg at
those places to resolve the problem.

Signed-off-by: default avatarXinming Hu <huxm@marvell.com>
Signed-off-by: default avatarAmitkumar Karwar <akarwar@marvell.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 50f85e22
Loading
Loading
Loading
Loading
+10 −16
Original line number Diff line number Diff line
@@ -2473,49 +2473,43 @@ static int mwifiex_pcie_init(struct mwifiex_adapter *adapter)

	pci_set_master(pdev);

	mwifiex_dbg(adapter, INFO,
		    "try set_consistent_dma_mask(32)\n");
	pr_notice("try set_consistent_dma_mask(32)\n");
	ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
	if (ret) {
		mwifiex_dbg(adapter, ERROR,
			    "set_dma_mask(32) failed\n");
		pr_err("set_dma_mask(32) failed\n");
		goto err_set_dma_mask;
	}

	ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
	if (ret) {
		mwifiex_dbg(adapter, ERROR,
			    "set_consistent_dma_mask(64) failed\n");
		pr_err("set_consistent_dma_mask(64) failed\n");
		goto err_set_dma_mask;
	}

	ret = pci_request_region(pdev, 0, DRV_NAME);
	if (ret) {
		mwifiex_dbg(adapter, ERROR,
			    "req_reg(0) error\n");
		pr_err("req_reg(0) error\n");
		goto err_req_region0;
	}
	card->pci_mmap = pci_iomap(pdev, 0, 0);
	if (!card->pci_mmap) {
		mwifiex_dbg(adapter, ERROR, "iomap(0) error\n");
		pr_err("iomap(0) error\n");
		ret = -EIO;
		goto err_iomap0;
	}
	ret = pci_request_region(pdev, 2, DRV_NAME);
	if (ret) {
		mwifiex_dbg(adapter, ERROR, "req_reg(2) error\n");
		pr_err("req_reg(2) error\n");
		goto err_req_region2;
	}
	card->pci_mmap1 = pci_iomap(pdev, 2, 0);
	if (!card->pci_mmap1) {
		mwifiex_dbg(adapter, ERROR,
			    "iomap(2) error\n");
		pr_err("iomap(2) error\n");
		ret = -EIO;
		goto err_iomap2;
	}

	mwifiex_dbg(adapter, INFO,
		    "PCI memory map Virt0: %p PCI memory map Virt2: %p\n",
	pr_notice("PCI memory map Virt0: %p PCI memory map Virt2: %p\n",
		  card->pci_mmap, card->pci_mmap1);

	card->cmdrsp_buf = NULL;
@@ -2635,11 +2629,11 @@ static int mwifiex_register_dev(struct mwifiex_adapter *adapter)

	/* save adapter pointer in card */
	card->adapter = adapter;
	adapter->dev = &pdev->dev;

	if (mwifiex_pcie_request_irq(adapter))
		return -1;

	adapter->dev = &pdev->dev;
	adapter->tx_buf_size = card->pcie.tx_buf_size;
	adapter->mem_type_mapping_tbl = mem_type_mapping_tbl;
	adapter->num_mem_types = ARRAY_SIZE(mem_type_mapping_tbl);