From: Joshua Wise Date: Sun, 21 Sep 2008 08:55:18 +0000 (-0400) Subject: make static things static X-Git-Url: http://git.joshuawise.com/netwatch.git/commitdiff_plain/9cfcd0ca09a4eccaadaedca17cee1a7516b99980 make static things static --- diff --git a/ich2/smi.c b/ich2/smi.c index 92607c4..43759dc 100644 --- a/ich2/smi.c +++ b/ich2/smi.c @@ -5,7 +5,7 @@ #include #include -uint16_t _get_PMBASE() +static uint16_t _get_PMBASE() { return pci_read32(ICH2_LPC_BUS, ICH2_LPC_DEV, ICH2_LPC_FN, ICH2_LPC_PCI_PMBASE) & ICH2_PMBASE_MASK; }