diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-10-19 21:16:55 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-10-19 21:16:55 +0000 |
commit | 372d35d272e44a15353e3f1ec6680c3da7474522 (patch) | |
tree | 6d222d338e193dbc02638fab9704dd5ec61025b7 /sys/arch | |
parent | c0c735f675e824a0455207ca0325f322d9cebf27 (diff) |
Add missing TAILQ_INIT.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/landisk/landisk/bus_dma.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/landisk/landisk/bus_dma.c b/sys/arch/landisk/landisk/bus_dma.c index e7691bf5917..dcd1f0ab9d1 100644 --- a/sys/arch/landisk/landisk/bus_dma.c +++ b/sys/arch/landisk/landisk/bus_dma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bus_dma.c,v 1.1 2006/10/06 21:16:15 miod Exp $ */ +/* $OpenBSD: bus_dma.c,v 1.2 2006/10/19 21:16:54 kettenis Exp $ */ /* $NetBSD: bus_dma.c,v 1.1 2006/09/01 21:26:18 uwe Exp $ */ /* @@ -538,6 +538,7 @@ _bus_dmamem_alloc(bus_dma_tag_t t, bus_size_t size, bus_size_t alignment, /* Always round the size. */ size = round_page(size); + TAILQ_INIT(&mlist); /* * Allocate the pages from the VM system. */ |