diff options
author | root <root@iss-tomyspiel-l> | 2011-06-16 01:36:35 +0200 |
---|---|---|
committer | root <root@iss-tomyspiel-l> | 2011-06-16 01:36:35 +0200 |
commit | 3215a87dbbce676aa434a6d5b4835e456dac3605 (patch) | |
tree | a748c415c395a56e5ec02abda9bda22bd366ab85 /driver/int.c | |
parent | c95df4d43738e1597c348bc7f98ff2902574d720 (diff) | |
download | pcitool-3215a87dbbce676aa434a6d5b4835e456dac3605.tar.gz pcitool-3215a87dbbce676aa434a6d5b4835e456dac3605.tar.bz2 pcitool-3215a87dbbce676aa434a6d5b4835e456dac3605.tar.xz pcitool-3215a87dbbce676aa434a6d5b4835e456dac3605.zip |
Remove unsupported devices
Diffstat (limited to 'driver/int.c')
-rw-r--r-- | driver/int.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/driver/int.c b/driver/int.c index 1cca7b2..285aa0e 100644 --- a/driver/int.c +++ b/driver/int.c @@ -247,9 +247,7 @@ static bool pcidriver_irq_acknowledge(pcidriver_privdata_t *privdata) /* FIXME: guillermo: which ones? all? */ /* Test if we have to handle this interrupt */ - if ((privdata->pdev->vendor != PCIEABB_VENDOR_ID) || - (privdata->pdev->device != PCIEABB_DEVICE_ID)) - return false; + return false; // The device is not supported any more /* Acknowledge the device */ /* this is for ABB / wenxue DMA engine */ |