summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/isp/isp_pci.c4
-rw-r--r--sys/dev/pci/pci.c6
-rw-r--r--sys/netinet/ip_flow.c4
-rw-r--r--sys/pci/isp_pci.c4
-rw-r--r--sys/pci/pci.c6
5 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/isp/isp_pci.c b/sys/dev/isp/isp_pci.c
index 58a86b7..ee3eba9 100644
--- a/sys/dev/isp/isp_pci.c
+++ b/sys/dev/isp/isp_pci.c
@@ -1,4 +1,4 @@
-/* $Id: isp_pci.c,v 1.17 1999/03/25 22:53:56 mjacob Exp $ */
+/* $Id: isp_pci.c,v 1.18 1999/04/04 01:14:02 mjacob Exp $ */
/* release_4_3_99 */
/*
* PCI specific probe and attach routines for Qlogic ISP SCSI adapters.
@@ -264,7 +264,7 @@ struct isp_pcisoftc {
static u_long ispunit;
-struct pci_device isp_pci_driver = {
+static struct pci_device isp_pci_driver = {
"isp",
isp_pci_probe,
isp_pci_attach,
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c
index 73b8142..e449fc2 100644
--- a/sys/dev/pci/pci.c
+++ b/sys/dev/pci/pci.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: pci.c,v 1.92 1999/01/12 01:44:42 eivind Exp $
+ * $Id: pci.c,v 1.93 1999/01/19 23:29:18 se Exp $
*
*/
@@ -58,9 +58,9 @@
#include <machine/smp.h>
#endif /* APIC_IO */
-STAILQ_HEAD(devlist, pci_devinfo) pci_devq;
+static STAILQ_HEAD(devlist, pci_devinfo) pci_devq;
u_int32_t pci_numdevs = 0;
-u_int32_t pci_generation = 0;
+static u_int32_t pci_generation = 0;
/* return highest PCI bus number known to be used, or -1 if none */
diff --git a/sys/netinet/ip_flow.c b/sys/netinet/ip_flow.c
index d4a2439..dfb7c1b 100644
--- a/sys/netinet/ip_flow.c
+++ b/sys/netinet/ip_flow.c
@@ -33,7 +33,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: ip_flow.c,v 1.5 1998/06/21 14:53:29 bde Exp $
+ * $Id: ip_flow.c,v 1.6 1998/12/07 21:58:38 archie Exp $
*/
#include <sys/param.h>
@@ -67,7 +67,7 @@ static int ipflow_active = 0;
SYSCTL_INT(_net_inet_ip, IPCTL_FASTFORWARDING, fastforwarding, CTLFLAG_RW,
&ipflow_active, 0, "");
-MALLOC_DEFINE(M_IPFLOW, "ip_flow", "IP flow");
+static MALLOC_DEFINE(M_IPFLOW, "ip_flow", "IP flow");
static unsigned
ipflow_hash(
diff --git a/sys/pci/isp_pci.c b/sys/pci/isp_pci.c
index 58a86b7..ee3eba9 100644
--- a/sys/pci/isp_pci.c
+++ b/sys/pci/isp_pci.c
@@ -1,4 +1,4 @@
-/* $Id: isp_pci.c,v 1.17 1999/03/25 22:53:56 mjacob Exp $ */
+/* $Id: isp_pci.c,v 1.18 1999/04/04 01:14:02 mjacob Exp $ */
/* release_4_3_99 */
/*
* PCI specific probe and attach routines for Qlogic ISP SCSI adapters.
@@ -264,7 +264,7 @@ struct isp_pcisoftc {
static u_long ispunit;
-struct pci_device isp_pci_driver = {
+static struct pci_device isp_pci_driver = {
"isp",
isp_pci_probe,
isp_pci_attach,
diff --git a/sys/pci/pci.c b/sys/pci/pci.c
index 73b8142..e449fc2 100644
--- a/sys/pci/pci.c
+++ b/sys/pci/pci.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: pci.c,v 1.92 1999/01/12 01:44:42 eivind Exp $
+ * $Id: pci.c,v 1.93 1999/01/19 23:29:18 se Exp $
*
*/
@@ -58,9 +58,9 @@
#include <machine/smp.h>
#endif /* APIC_IO */
-STAILQ_HEAD(devlist, pci_devinfo) pci_devq;
+static STAILQ_HEAD(devlist, pci_devinfo) pci_devq;
u_int32_t pci_numdevs = 0;
-u_int32_t pci_generation = 0;
+static u_int32_t pci_generation = 0;
/* return highest PCI bus number known to be used, or -1 if none */
OpenPOWER on IntegriCloud