diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-05-31 05:51:21 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-05-31 05:51:21 +0000 |
commit | 2d20b23ac7a05246eb3da4d389a32307db1a71df (patch) | |
tree | 9e40ce59abe278ce5f5726542d205654c943e7c7 /sys | |
parent | d7be6bedd85571f90824bc6668f0257055020b25 (diff) |
Remove unused cfdriver field, pointed out by miod@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/armish/armish/autoconf.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/arch/armish/armish/autoconf.c b/sys/arch/armish/armish/autoconf.c index 4224bafca90..f64386665ba 100644 --- a/sys/arch/armish/armish/autoconf.c +++ b/sys/arch/armish/armish/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.1 2006/05/29 17:13:19 drahn Exp $ */ +/* $OpenBSD: autoconf.c,v 1.2 2006/05/31 05:51:20 drahn Exp $ */ /* $NetBSD: autoconf.c,v 1.2 2001/09/05 16:17:36 matt Exp $ */ /* @@ -91,24 +91,23 @@ extern struct cfdriver raid_cd; #endif struct genericconf { - struct cfdriver *gc_driver; char *gc_name; dev_t gc_major; } genericconf[] = { #if NWD > 0 - { &wd_cd, "wd", 16 }, + { "wd", 16 }, #endif #if NSD > 0 - { &sd_cd, "sd", 24 }, + { "sd", 24 }, #endif #if NCD > 0 - { &cd_cd, "cd", 26 }, + { "cd", 26 }, #endif #if NRD > 0 - { &rd_cd, "rd", 18 }, + { "rd", 18 }, #endif #if NRAID > 0 - { &raid_cd, "raid", 71 }, + { "raid", 71 }, #endif { 0 } }; |