From 27b662b36f78ad5ffb9d63c225b14a39f683fc63 Mon Sep 17 00:00:00 2001 From: assar Date: Tue, 19 Dec 2000 08:32:37 +0000 Subject: [PATCH] un-staticize M_AGP so that it can be used in agp*.c --- sys/dev/agp/agp.c | 2 +- sys/pci/agp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/agp/agp.c b/sys/dev/agp/agp.c index 97dcddd7a63..a9d85bb2c09 100644 --- a/sys/dev/agp/agp.c +++ b/sys/dev/agp/agp.c @@ -59,7 +59,7 @@ MODULE_VERSION(agp, 1); -static MALLOC_DEFINE(M_AGP, "agp", "AGP data structures"); +MALLOC_DEFINE(M_AGP, "agp", "AGP data structures"); #define CDEV_MAJOR 148 /* agp_drv.c */ diff --git a/sys/pci/agp.c b/sys/pci/agp.c index 97dcddd7a63..a9d85bb2c09 100644 --- a/sys/pci/agp.c +++ b/sys/pci/agp.c @@ -59,7 +59,7 @@ MODULE_VERSION(agp, 1); -static MALLOC_DEFINE(M_AGP, "agp", "AGP data structures"); +MALLOC_DEFINE(M_AGP, "agp", "AGP data structures"); #define CDEV_MAJOR 148 /* agp_drv.c */ -- 2.45.2