summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mptable/mptable.c
diff options
context:
space:
mode:
authorfsmp <fsmp@FreeBSD.org>1997-09-06 04:11:53 +0000
committerfsmp <fsmp@FreeBSD.org>1997-09-06 04:11:53 +0000
commite0e2f7c58cc1f15b62754b339a0852f197084c9f (patch)
treee3d94723f4b7ec2d1f82b073024d4ae8f105e71b /usr.sbin/mptable/mptable.c
parent669c3ef94707944609b06ab2bafdca1230fa7a04 (diff)
downloadFreeBSD-src-e0e2f7c58cc1f15b62754b339a0852f197084c9f.zip
FreeBSD-src-e0e2f7c58cc1f15b62754b339a0852f197084c9f.tar.gz
Changed the Ints labels for the IO APIC from "INT#" to "PIN#" to better
reflect its logical usage. Ie., there is NOT a 1-to-1 correspondence between IRQ numbers and APIC pin numbers as there is with the 8259 ICU.
Diffstat (limited to 'usr.sbin/mptable/mptable.c')
-rw-r--r--usr.sbin/mptable/mptable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/mptable/mptable.c b/usr.sbin/mptable/mptable.c
index 82df3c4..459b1ab 100644
--- a/usr.sbin/mptable/mptable.c
+++ b/usr.sbin/mptable/mptable.c
@@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: mptable.c,v 1.6 1997/07/22 18:52:20 fsmp Exp $
+ * $Id: mptable.c,v 1.7 1997/08/26 05:12:45 fsmp Exp $
*/
/*
@@ -31,7 +31,7 @@
#define VMAJOR 2
#define VMINOR 0
-#define VDELTA 14
+#define VDELTA 15
/*
* this will cause the raw mp table to be dumped to /tmp/mpdump
@@ -769,7 +769,7 @@ MPConfigTableHeader( void* pap )
}
/* process all the I/O Ints */
- printf( "--\nI/O Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tINT#\n" );
+ printf( "--\nI/O Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#\n" );
for ( t = totalSize, c = count; c; c-- ) {
if ( readType() == 3 )
intEntry();
@@ -777,7 +777,7 @@ MPConfigTableHeader( void* pap )
}
/* process all the Local Ints */
- printf( "--\nLocal Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tINT#\n" );
+ printf( "--\nLocal Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#\n" );
for ( t = totalSize, c = count; c; c-- ) {
if ( readType() == 4 )
intEntry();
OpenPOWER on IntegriCloud