Module Name:    src
Committed By:   dyoung
Date:           Wed May  5 16:53:58 UTC 2010

Modified Files:
        src/sys/arch/amd64/amd64: busfunc.S

Log Message:
As Andrew Doran points out, _ALIGN_TEXT is unused, and to test that
X86_BUS_SPACE_IO equals 0 is no longer necessary.  Get rid of the
_ALIGN_TEXT definition, and do not "assert" that X86_BUS_SPACE_IO == 0.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/amd64/amd64/busfunc.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amd64/amd64/busfunc.S
diff -u src/sys/arch/amd64/amd64/busfunc.S:1.8 src/sys/arch/amd64/amd64/busfunc.S:1.9
--- src/sys/arch/amd64/amd64/busfunc.S:1.8	Wed Apr 28 19:17:03 2010
+++ src/sys/arch/amd64/amd64/busfunc.S	Wed May  5 16:53:57 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: busfunc.S,v 1.8 2010/04/28 19:17:03 dyoung Exp $	*/
+/*	$NetBSD: busfunc.S,v 1.9 2010/05/05 16:53:57 dyoung Exp $	*/
 
 /*-
  * Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
@@ -33,14 +33,6 @@
 
 #include "assym.h"
 
-/* XXX */
-#undef	_ALIGN_TEXT
-#define	_ALIGN_TEXT	.align 16
-
-#if X86_BUS_SPACE_IO != 0
-#error depends on X86_BUS_SPACE_IO == 0
-#endif
-
 .Ldopanic:
 	movq	$.Lpstr, %rdi
 	call	_C_LABEL(panic)

Reply via email to