From 2c0f263ee76200071a69be936141bf13e7d32d1e Mon Sep 17 00:00:00 2001 From: cgd Date: Mon, 27 Feb 1995 01:08:01 +0000 Subject: use wdc_softc in wdccd, rather than wd_softc; from chuck cranor. (pr 828) --- sys/dev/ata/wd.c | 4 ++-- sys/dev/isa/wd.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c index a428cd928c4..0cb5d6244a2 100644 --- a/sys/dev/ata/wd.c +++ b/sys/dev/ata/wd.c @@ -1,4 +1,4 @@ -/* $NetBSD: wd.c,v 1.130 1995/01/29 07:37:15 cgd Exp $ */ +/* $NetBSD: wd.c,v 1.131 1995/02/27 01:08:01 cgd Exp $ */ /* * Copyright (c) 1994, 1995 Charles Hannum. All rights reserved. @@ -170,7 +170,7 @@ int wdcprobe __P((struct device *, void *, void *)); void wdcattach __P((struct device *, struct device *, void *)); struct cfdriver wdccd = { - NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wd_softc) + NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wdc_softc) }; int wdprobe __P((struct device *, void *, void *)); diff --git a/sys/dev/isa/wd.c b/sys/dev/isa/wd.c index a428cd928c4..0cb5d6244a2 100644 --- a/sys/dev/isa/wd.c +++ b/sys/dev/isa/wd.c @@ -1,4 +1,4 @@ -/* $NetBSD: wd.c,v 1.130 1995/01/29 07:37:15 cgd Exp $ */ +/* $NetBSD: wd.c,v 1.131 1995/02/27 01:08:01 cgd Exp $ */ /* * Copyright (c) 1994, 1995 Charles Hannum. All rights reserved. @@ -170,7 +170,7 @@ int wdcprobe __P((struct device *, void *, void *)); void wdcattach __P((struct device *, struct device *, void *)); struct cfdriver wdccd = { - NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wd_softc) + NULL, "wdc", wdcprobe, wdcattach, DV_DULL, sizeof(struct wdc_softc) }; int wdprobe __P((struct device *, void *, void *)); -- cgit