diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-11 23:48:47 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-11-11 23:48:47 +0000 |
commit | f1e95d9095615667fcb4ba9128fcc068aabf896c (patch) | |
tree | 6a2ac601ebbea661fbf20a47ea50ed34e5812386 /sys/arch | |
parent | 2ece0d0fb7f483d23568ec9f09767123350f67f1 (diff) |
order nam2blk by major number
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/riscv64/riscv64/autoconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/riscv64/riscv64/autoconf.c b/sys/arch/riscv64/riscv64/autoconf.c index c600f59b573..361a0d085ed 100644 --- a/sys/arch/riscv64/riscv64/autoconf.c +++ b/sys/arch/riscv64/riscv64/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.7 2024/11/10 06:51:59 jsg Exp $ */ +/* $OpenBSD: autoconf.c,v 1.8 2024/11/11 23:48:46 jsg Exp $ */ /* * Copyright (c) 2009 Miodrag Vallat. @@ -101,7 +101,7 @@ const struct nam2blk nam2blk[] = { { "wd", 0 }, { "sd", 4 }, { "cd", 6 }, - { "vnd", 14 }, { "rd", 8 }, + { "vnd", 14 }, { NULL, -1 } }; |