diff options
author | neel <neel@FreeBSD.org> | 2010-08-06 07:03:22 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2010-08-06 07:03:22 +0000 |
commit | 6639a8f4cb6eacd78ac589888cd2475908d6d243 (patch) | |
tree | 22738ff6b166d5ec91a7dee686cd26fcdfbe1253 | |
parent | d577b78bf16ec399f349ab747df0571f273f009c (diff) | |
download | FreeBSD-src-6639a8f4cb6eacd78ac589888cd2475908d6d243.zip FreeBSD-src-6639a8f4cb6eacd78ac589888cd2475908d6d243.tar.gz |
Remove redundant declaration of 'pcib_driver' class from sb_zbpci.c. This
causes a compilation error.
The declaration is provided by sys/dev/pci/pcib_private.h starting from r210864.
-rw-r--r-- | sys/mips/sibyte/sb_zbpci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/mips/sibyte/sb_zbpci.c b/sys/mips/sibyte/sb_zbpci.c index 42fed5e..9a09645 100644 --- a/sys/mips/sibyte/sb_zbpci.c +++ b/sys/mips/sibyte/sb_zbpci.c @@ -457,7 +457,6 @@ static device_method_t zbpci_methods[] ={ * consider drivers belonging to the "pcib" when probing children of * "zbpci". */ -DECLARE_CLASS(pcib_driver); DEFINE_CLASS_1(zbpci, zbpci_driver, zbpci_methods, 0, pcib_driver); static devclass_t zbpci_devclass; |