From db8a25bd07aedc60882e70438ee19ffbe9982570 Mon Sep 17 00:00:00 2001 From: Thomas Moestl Date: Sun, 30 Dec 2001 16:14:33 +0000 Subject: [PATCH] Do not include pcib.h, which only existed in my development tree, and do not use struct pcib_softc when struct apb_softc would be correct. Spotted by: jake Pointy hat to: tmm --- sys/sparc64/pci/apb.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/sparc64/pci/apb.c b/sys/sparc64/pci/apb.c index 61fa83ccc468..52a52700dfeb 100644 --- a/sys/sparc64/pci/apb.c +++ b/sys/sparc64/pci/apb.c @@ -50,7 +50,6 @@ #include #include -#include #include "pcib_if.h" @@ -111,7 +110,7 @@ static device_method_t apb_methods[] = { static driver_t apb_driver = { "pcib", apb_methods, - sizeof(struct pcib_softc), + sizeof(struct apb_softc), }; static devclass_t apb_devclass;