[PATCH] skge: use pci_read_config_word
Rather than accessing PCI config space through MMIO space, use the standard PCI functions. Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
This commit is contained in:

committed by
Jeff Garzik

parent
6b0c148049
commit
467b3417f9
@@ -2692,9 +2692,9 @@ static void skge_pci_clear(struct skge_hw *hw)
|
|||||||
{
|
{
|
||||||
u16 status;
|
u16 status;
|
||||||
|
|
||||||
status = skge_read16(hw, SKGEPCI_REG(PCI_STATUS));
|
pci_read_config_word(hw->pdev, PCI_STATUS, &status);
|
||||||
skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
|
skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
|
||||||
skge_write16(hw, SKGEPCI_REG(PCI_STATUS),
|
pci_write_config_word(hw->pdev, PCI_STATUS,
|
||||||
status | PCI_STATUS_ERROR_BITS);
|
status | PCI_STATUS_ERROR_BITS);
|
||||||
skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
|
skge_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user