diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-12 00:00:26 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-12 00:00:26 +0000 |
commit | d3574c97695d538df514c64348c762cdc9698dcc (patch) | |
tree | 200689156419dd3204c5c99a4f724fd224b04357 | |
parent | f1e95d9095615667fcb4ba9128fcc068aabf896c (diff) |
add wd to nam2blk to match bdevsw
-rw-r--r-- | sys/arch/powerpc64/powerpc64/autoconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc64/powerpc64/autoconf.c b/sys/arch/powerpc64/powerpc64/autoconf.c index 482087a8e66..4f393ada4c4 100644 --- a/sys/arch/powerpc64/powerpc64/autoconf.c +++ b/sys/arch/powerpc64/powerpc64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.9 2022/09/08 10:22:06 kn Exp $ */ +/* $OpenBSD: autoconf.c,v 1.10 2024/11/12 00:00:25 jsg Exp $ */ /* * Copyright (c) 2020 Mark Kettenis <kettenis@openbsd.org> @@ -79,5 +79,6 @@ const struct nam2blk nam2blk[] = { { "rd", 2 }, { "sd", 3 }, { "cd", 4 }, + { "wd", 5 }, { NULL, -1 } }; |