From 60bd06dafce0de88b1dbe0b198163fe39cc0400b Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 16:47:50 +0000 Subject: [PATCH] Mark all global variables static for mptable(1). While there, remove basetableEntryTypes, which became unused in r71209. --- usr.sbin/mptable/mptable.c | 41 +++++++++++++++----------------------- 1 file changed, 16 insertions(+), 25 deletions(-) diff --git a/usr.sbin/mptable/mptable.c b/usr.sbin/mptable/mptable.c index a16a1b94ff93..92279bc1a77d 100644 --- a/usr.sbin/mptable/mptable.c +++ b/usr.sbin/mptable/mptable.c @@ -96,7 +96,7 @@ typedef struct BUSTYPENAME { char name[ 7 ]; } busTypeName; -static busTypeName busTypeTable[] = +static const busTypeName busTypeTable[] = { { CBUS, "CBUS" }, { CBUSII, "CBUSII" }, @@ -119,7 +119,7 @@ static busTypeName busTypeTable[] = { UNKNOWN_BUSTYPE, "---" } }; -const char* whereStrings[] = { +static const char *whereStrings[] = { "Extended BIOS Data Area", "BIOS top of memory", "Default top of memory", @@ -135,16 +135,7 @@ typedef struct TABLE_ENTRY { char name[ 32 ]; } tableEntry; -tableEntry basetableEntryTypes[] = -{ - { 0, 20, "Processor" }, - { 1, 8, "Bus" }, - { 2, 8, "I/O APIC" }, - { 3, 8, "I/O INT" }, - { 4, 8, "Local INT" } -}; - -tableEntry extendedtableEntryTypes[] = +static const tableEntry extendedtableEntryTypes[] = { { 128, 20, "System Address Space" }, { 129, 8, "Bus Hierarchy" }, @@ -277,19 +268,19 @@ static void doDmesg( void ); static void pnstr( char* s, int c ); /* global data */ -int pfd; /* physical /dev/mem fd */ +static int pfd; /* physical /dev/mem fd */ -int busses[ 16 ]; -int apics[ 16 ]; +static int busses[16]; +static int apics[16]; -int ncpu; -int nbus; -int napic; -int nintr; +static int ncpu; +static int nbus; +static int napic; +static int nintr; -int dmesg; -int grope; -int verbose; +static int dmesg; +static int grope; +static int verbose; static void usage( void ) @@ -978,14 +969,14 @@ ioApicEntry( void ) } -const char* intTypes[] = { +static const char *intTypes[] = { "INT", "NMI", "SMI", "ExtINT" }; -const char* polarityMode[] = { +static const char *polarityMode[] = { "conforms", "active-hi", "reserved", "active-lo" }; -const char* triggerMode[] = { +static const char *triggerMode[] = { "conforms", "edge", "reserved", "level" };