diff options
| author | drochner <drochner@NetBSD.org> | 2004-08-30 18:28:33 +0000 |
|---|---|---|
| committer | drochner <drochner@NetBSD.org> | 2004-08-30 18:28:33 +0000 |
| commit | 266668cb7da9b683440dee73b11905fd5da33b41 (patch) | |
| tree | 03e49021d43d4d88ff82ebd9c14b431af19f5f60 /sys/dev/mca | |
| parent | 9a623ba31127d15131fc40da9a182abdfda24dd7 (diff) | |
There is no point in using config_found_sm() if there is no submatch function.
(actually, there should be one...)
Diffstat (limited to 'sys/dev/mca')
| -rw-r--r-- | sys/dev/mca/edc_mca.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/mca/edc_mca.c b/sys/dev/mca/edc_mca.c index 7917ee0752d..bd5419e1fbc 100644 --- a/sys/dev/mca/edc_mca.c +++ b/sys/dev/mca/edc_mca.c @@ -1,4 +1,4 @@ -/* $NetBSD: edc_mca.c,v 1.23 2003/11/10 08:51:52 wiz Exp $ */ +/* $NetBSD: edc_mca.c,v 1.24 2004/08/30 18:28:33 drochner Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -50,7 +50,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: edc_mca.c,v 1.23 2003/11/10 08:51:52 wiz Exp $"); +__KERNEL_RCSID(0, "$NetBSD: edc_mca.c,v 1.24 2004/08/30 18:28:33 drochner Exp $"); #include "rnd.h" @@ -307,7 +307,7 @@ edc_mca_attach(parent, self, aux) for(devno=0; devno < sc->sc_maxdevs; devno++) { eda.edc_drive = devno; sc->sc_ed[devno] = - (void *) config_found_sm(self, &eda, NULL, NULL); + (void *) config_found(self, &eda, NULL); /* If initialization did not succeed, NULL the pointer. */ if (sc->sc_ed[devno] |
