diff options
author | phk <phk@FreeBSD.org> | 2000-12-08 20:09:00 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-12-08 20:09:00 +0000 |
commit | c3f2ee9700d0fed2b3e547667a6c907d938f10ed (patch) | |
tree | 9b91e3254d2e20aba04461b987734554ccec9f24 /sys/dev/ata/ata-raid.c | |
parent | 66ed1a203c9a3402bd1232f9af1218dfbc9dd09c (diff) | |
download | FreeBSD-src-c3f2ee9700d0fed2b3e547667a6c907d938f10ed.zip FreeBSD-src-c3f2ee9700d0fed2b3e547667a6c907d938f10ed.tar.gz |
Staticize some malloc M_ instances.
Diffstat (limited to 'sys/dev/ata/ata-raid.c')
-rw-r--r-- | sys/dev/ata/ata-raid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ata/ata-raid.c b/sys/dev/ata/ata-raid.c index 2a8b921..bc9cbe4 100644 --- a/sys/dev/ata/ata-raid.c +++ b/sys/dev/ata/ata-raid.c @@ -76,7 +76,7 @@ static int ar_read(struct ad_softc *, u_int32_t, int, char *); /* internal vars */ static int ar_init = 0; static struct ar_softc *ar_table[8]; -MALLOC_DEFINE(M_AR, "AR driver", "ATA RAID driver"); +static MALLOC_DEFINE(M_AR, "AR driver", "ATA RAID driver"); /* defines */ #define PRINT_AD(adp) \ |