Compilation fix for ixgbe_main.c.
Under CONFIG_DCA the compilation is broken since the commit
bd0362dde0
(ixgbe: Add optional
DCA infrastructure).
IXGBE_SUCCESS is not defined anywhere, replace it with 0.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
80950f8b71
commit
652f093fdf
1 changed files with 3 additions and 3 deletions
|
@ -367,7 +367,7 @@ static int __ixgbe_notify_dca(struct device *dev, void *data)
|
||||||
/* Always use CB2 mode, difference is masked
|
/* Always use CB2 mode, difference is masked
|
||||||
* in the CB driver. */
|
* in the CB driver. */
|
||||||
IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
|
IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
|
||||||
if (dca_add_requester(dev) == IXGBE_SUCCESS) {
|
if (dca_add_requester(dev) == 0) {
|
||||||
ixgbe_setup_dca(adapter);
|
ixgbe_setup_dca(adapter);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -381,7 +381,7 @@ static int __ixgbe_notify_dca(struct device *dev, void *data)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return IXGBE_SUCCESS;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_DCA */
|
#endif /* CONFIG_DCA */
|
||||||
|
@ -3605,7 +3605,7 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
|
||||||
goto err_register;
|
goto err_register;
|
||||||
|
|
||||||
#ifdef CONFIG_DCA
|
#ifdef CONFIG_DCA
|
||||||
if (dca_add_requester(&pdev->dev) == IXGBE_SUCCESS) {
|
if (dca_add_requester(&pdev->dev) == 0) {
|
||||||
adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
|
adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
|
||||||
/* always use CB2 mode, difference is masked
|
/* always use CB2 mode, difference is masked
|
||||||
* in the CB driver */
|
* in the CB driver */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue