diff options
| author | jdolecek <jdolecek@NetBSD.org> | 2016-09-16 15:20:50 +0000 |
|---|---|---|
| committer | jdolecek <jdolecek@NetBSD.org> | 2016-09-16 15:20:50 +0000 |
| commit | 9c84788c6f2a698bcb239deb4e9232bb7d7fc003 (patch) | |
| tree | c3d0ff31722b08a359b0eed974d840060f48eeda /sys/dev/ic/ld_mlx.c | |
| parent | d2de90c575ba04ca842bfc33f2eefb19d8615fc0 (diff) | |
modify ldattach() to have default strategy as a parameter
Diffstat (limited to 'sys/dev/ic/ld_mlx.c')
| -rw-r--r-- | sys/dev/ic/ld_mlx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/ld_mlx.c b/sys/dev/ic/ld_mlx.c index fc6395578ba..09fc3a2cb8e 100644 --- a/sys/dev/ic/ld_mlx.c +++ b/sys/dev/ic/ld_mlx.c @@ -1,4 +1,4 @@ -/* $NetBSD: ld_mlx.c,v 1.21 2015/04/13 16:33:24 riastradh Exp $ */ +/* $NetBSD: ld_mlx.c,v 1.22 2016/09/16 15:20:50 jdolecek Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ld_mlx.c,v 1.21 2015/04/13 16:33:24 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ld_mlx.c,v 1.22 2016/09/16 15:20:50 jdolecek Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -127,7 +127,7 @@ ld_mlx_attach(device_t parent, device_t self, void *aux) else aprint_normal(": RAID%d, %s\n", ms->ms_raidlevel, statestr); - ldattach(ld); + ldattach(ld, BUFQ_DISK_DEFAULT_STRAT); } static int |
