pci: fix compiler warning about unused variables
This commit is contained in:
parent
8aff0e5be6
commit
6c5deb9b50
1 changed files with 1 additions and 2 deletions
|
@ -1454,9 +1454,8 @@ enumcaps(Pcidev *p, int (*fmatch)(Pcidev*, int, int, int), int arg)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
matchcap(Pcidev *p, int cap, int off, int arg)
|
matchcap(Pcidev *, int cap, int, int arg)
|
||||||
{
|
{
|
||||||
USED(off);
|
|
||||||
return cap != arg;
|
return cap != arg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue