Skip to content

Commit

Permalink
solos: Set RX empty flag at startup only for !dma mode
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jan 30, 2009
1 parent cd5549e commit eab50f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/atm/solos-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1090,8 +1090,6 @@ static int fpga_probe(struct pci_dev *dev, const struct pci_device_id *id)
iowrite32(0, card->config_regs + FPGA_MODE);
data32 = ioread32(card->config_regs + FPGA_MODE);
}
//Set RX empty flags
iowrite32(0xF0, card->config_regs + FLAGS_ADDR);

data32 = ioread32(card->config_regs + FPGA_VER);
fpga_ver = (data32 & 0x0000FFFF);
Expand All @@ -1102,6 +1100,10 @@ static int fpga_probe(struct pci_dev *dev, const struct pci_device_id *id)

if (fpga_ver > 27)
card->using_dma = 1;
else {
/* Set RX empty flag for all ports */
iowrite32(0xF0, card->config_regs + FLAGS_ADDR);
}

card->nr_ports = 2; /* FIXME: Detect daughterboard */

Expand Down

0 comments on commit eab50f7

Please sign in to comment.