Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Nov 2008 05:19:47 GMT
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 152641 for review
Message-ID:  <200811080519.mA85JlA2015949@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=152641

Change 152641 by nwhitehorn@nwhitehorn_trantor on 2008/11/08 05:18:47

	Allow kernel to be built without device isa.

Affected files ...

.. //depot/projects/ppc-g5/sys/powerpc/powermac/cpcht.c#7 edit

Differences ...

==== //depot/projects/ppc-g5/sys/powerpc/powermac/cpcht.c#7 (text+ko) ====

@@ -37,7 +37,6 @@
 
 #include <dev/pci/pcivar.h>
 #include <dev/pci/pcireg.h>
-#include <isa/isavar.h>
 
 #include <machine/bus.h>
 #include <machine/md_var.h>
@@ -56,6 +55,12 @@
 
 #include "pcib_if.h"
 
+#include "opt_isa.h"
+
+#ifdef DEV_ISA
+#include <isa/isavar.h>
+#endif
+
 static MALLOC_DEFINE(M_CPCHT, "cpcht", "CPC HT device information");
 
 /*
@@ -166,6 +171,8 @@
 	return (device_get_ivars(child));	
 }
 
+#ifdef DEV_ISA
+
 /*
  * CPC ISA Device interface.
  */
@@ -217,6 +224,8 @@
 	return (0);
 }
 
+#endif /* DEV_ISA */
+
 /*
  * CPC PCI Device interface.
  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811080519.mA85JlA2015949>