Date: Sun, 6 Nov 2011 16:47:50 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r227224 - head/usr.sbin/mptable Message-ID: <201111061647.pA6GloTs030976@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ed Date: Sun Nov 6 16:47:50 2011 New Revision: 227224 URL: http://svn.freebsd.org/changeset/base/227224 Log: Mark all global variables static for mptable(1). While there, remove basetableEntryTypes, which became unused in r71209. Modified: head/usr.sbin/mptable/mptable.c Modified: head/usr.sbin/mptable/mptable.c ============================================================================== --- head/usr.sbin/mptable/mptable.c Sun Nov 6 16:40:17 2011 (r227223) +++ head/usr.sbin/mptable/mptable.c Sun Nov 6 16:47:50 2011 (r227224) @@ -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; - -int dmesg; -int grope; -int verbose; +static int ncpu; +static int nbus; +static int napic; +static int nintr; + +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" };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111061647.pA6GloTs030976>