Commit 796312cd authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller

nfp: correct name of control BAR define

Spell abbreviation of control as ctrl not crtl.
Signed-off-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6fde0e63
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
#define NFP_NET_POLL_TIMEOUT 5 #define NFP_NET_POLL_TIMEOUT 5
/* Bar allocation */ /* Bar allocation */
#define NFP_NET_CRTL_BAR 0 #define NFP_NET_CTRL_BAR 0
#define NFP_NET_Q0_BAR 2 #define NFP_NET_Q0_BAR 2
#define NFP_NET_Q1_BAR 4 /* OBSOLETE */ #define NFP_NET_Q1_BAR 4 /* OBSOLETE */
......
...@@ -124,11 +124,11 @@ static int nfp_netvf_pci_probe(struct pci_dev *pdev, ...@@ -124,11 +124,11 @@ static int nfp_netvf_pci_probe(struct pci_dev *pdev,
* first NFP_NET_CFG_BAR_SZ of the BAR. This keeps the code * first NFP_NET_CFG_BAR_SZ of the BAR. This keeps the code
* the identical for PF and VF drivers. * the identical for PF and VF drivers.
*/ */
ctrl_bar = ioremap_nocache(pci_resource_start(pdev, NFP_NET_CRTL_BAR), ctrl_bar = ioremap_nocache(pci_resource_start(pdev, NFP_NET_CTRL_BAR),
NFP_NET_CFG_BAR_SZ); NFP_NET_CFG_BAR_SZ);
if (!ctrl_bar) { if (!ctrl_bar) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"Failed to map resource %d\n", NFP_NET_CRTL_BAR); "Failed to map resource %d\n", NFP_NET_CTRL_BAR);
err = -EIO; err = -EIO;
goto err_pci_regions; goto err_pci_regions;
} }
......
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