[PATCH] net: Fix compiler-error on dgrs.c when !CONFIG_PCI
drivers/net/dgrs.c: In function `dgrs_init_module': drivers/net/dgrs.c:1598: `dgrs_pci_driver' undeclared (first use in this function) Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
989e4d6cbc
commit
18317ab0ca
1 changed files with 2 additions and 0 deletions
|
@ -1458,6 +1458,8 @@ static struct pci_driver dgrs_pci_driver = {
|
||||||
.probe = dgrs_pci_probe,
|
.probe = dgrs_pci_probe,
|
||||||
.remove = __devexit_p(dgrs_pci_remove),
|
.remove = __devexit_p(dgrs_pci_remove),
|
||||||
};
|
};
|
||||||
|
#else
|
||||||
|
static struct pci_driver dgrs_pci_driver = {};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue