struct cfdata doesn't have locnames anymore

This commit is contained in:
drochner 2005-08-25 15:08:06 +00:00
parent 6036af9fc4
commit 9ab0a3e02e
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: dummy_pci_lkm.c,v 1.1 2004/08/18 14:06:13 drochner Exp $ */
/* $NetBSD: dummy_pci_lkm.c,v 1.2 2005/08/25 15:08:06 drochner Exp $ */
#include <sys/param.h>
#include <sys/systm.h>
@ -14,7 +14,7 @@ static struct cfparent pciparent = {
"pci", "pci", DVUNIT_ANY
};
static struct cfdata mist_cfdata[] = {
{"mist", "mist", 0, FSTATE_STAR, pciloc, 0, &pciparent, 0},
{"mist", "mist", 0, FSTATE_STAR, pciloc, 0, &pciparent},
{ 0 }
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: wi_pcmcia_lkm.c,v 1.1 2004/08/18 13:12:07 drochner Exp $ */
/* $NetBSD: wi_pcmcia_lkm.c,v 1.2 2005/08/25 15:08:06 drochner Exp $ */
#include <sys/param.h>
#include <sys/systm.h>
@ -12,13 +12,14 @@ CFDRIVER_DECL(wi, DV_DULL, NULL);
extern struct cfdriver wi_cd;
extern struct cfattach wi_pcmcia_ca;
extern struct cfiattrdata pcmciacf_iattrdata;
static int pcmcialoc[] = { -1, -1 }; /* function, irq */
static struct cfparent pcmciaparent = {
"pcmcia", "pcmcia", DVUNIT_ANY
};
static struct cfdata wi_pcmcia_cfdata[] = {
{"wi", "wi_pcmcia", 0, FSTATE_STAR, pcmcialoc, 0, &pcmciaparent, 0},
{"wi", "wi_pcmcia", 0, FSTATE_STAR, pcmcialoc, 0, &pcmciaparent},
{ 0 }
};