Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Sep 2002 20:18:01 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 17817 for review
Message-ID:  <200209210318.g8L3I1Zb005247@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=17817

Change 17817 by peter@peter_daintree on 2002/09/20 20:17:09

	nuke npx flags

Affected files ...

.. //depot/projects/hammer/sys/x86_64/isa/npx.c#6 edit

Differences ...

==== //depot/projects/hammer/sys/x86_64/isa/npx.c#6 (text+ko) ====

@@ -78,12 +78,6 @@
  * 387 and 287 Numeric Coprocessor Extension (NPX) Driver.
  */
 
-/* Configuration flags. */
-#define	NPX_DISABLE_I586_OPTIMIZED_BCOPY	(1 << 0)
-#define	NPX_DISABLE_I586_OPTIMIZED_BZERO	(1 << 1)
-#define	NPX_DISABLE_I586_OPTIMIZED_COPYIO	(1 << 2)
-#define	NPX_PREFER_EMULATOR			(1 << 3)
-
 #ifdef	__GNUC__
 
 #define	fldcw(addr)		__asm("fldcw %0" : : "m" (*(addr)))
@@ -163,9 +157,9 @@
 
 /*
  * Probe routine.  Initialize cr0 to give correct behaviour for [f]wait
- * whether the device exists or not (XXX should be elsewhere).  Set flags
- * to tell npxattach() what to do.  Modify device struct if npx doesn't
- * need to use interrupts.  Return 0 if device exists.
+ * whether the device exists or not (XXX should be elsewhere).
+ * Modify device struct if npx doesn't need to use interrupts.
+ * Return 0 if device exists.
  */
 static int
 npx_probe(dev)
@@ -214,14 +208,8 @@
 npx_attach(dev)
 	device_t dev;
 {
-	int flags;
 	register_t s;
 
-	if (resource_int_value("npx", 0, "flags", &flags) != 0)
-		flags = 0;
-
-	if (flags)
-		device_printf(dev, "flags 0x%x ", flags);
 	device_printf(dev, "INT 16 interface\n");
 	npxinit(__INITIAL_NPXCW__);
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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