diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-08-14 11:43:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-08-14 11:43:47 +0000 |
commit | 23ef0a03808247da69d477934e09903141c46d07 (patch) | |
tree | 2b8fcb2396189f10def3fe26947bc642a7677998 /sys/dev/pci | |
parent | bb3fdfa8291acc35d5db62c3361d2883056bea8b (diff) |
minimal diff to let if_art compile; claudio ok
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/musycc_obsd.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/pci/musycc_obsd.c b/sys/dev/pci/musycc_obsd.c index d079572c859..1bbeecb38e9 100644 --- a/sys/dev/pci/musycc_obsd.c +++ b/sys/dev/pci/musycc_obsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: musycc_obsd.c,v 1.2 2005/08/13 23:52:49 claudio Exp $ */ +/* $OpenBSD: musycc_obsd.c,v 1.3 2005/08/14 11:43:46 deraadt Exp $ */ /* * Copyright (c) 2004,2005 Internet Business Solutions AG, Zurich, Switzerland @@ -41,24 +41,24 @@ #include <dev/pci/pcidevs.h> int musycc_match(struct device *, void *, void *); -int ebus_match(struct device *, void *, void *); +int musyccbus_match(struct device *, void *, void *); void musycc_softc_attach(struct device *, struct device *, void *); -void ebus_softc_attach(struct device *, struct device *, void *); -int ebus_print(void *, const char *); +void musyccbus_softc_attach(struct device *, struct device *, void *); +int musyccbus_print(void *, const char *); struct cfattach musycc_ca = { sizeof(struct musycc_softc), musycc_match, musycc_softc_attach }; -struct cfattach ebus_ca = { - sizeof(struct ebus_softc), ebus_match, ebus_softc_attach +struct cfattach musyccbus_ca = { + sizeof(struct ebus_softc), musyccbus_match, musyccbus_softc_attach }; struct cfdriver musycc_cd = { NULL, "musycc", DV_DULL }; -struct cfdriver ebus_cd = { +struct cfdriver musyccbus_cd = { NULL, "ebus", DV_DULL }; @@ -85,7 +85,7 @@ musycc_match(struct device *parent, void *match, void *aux) } int -ebus_match(struct device *parent, void *match, void *aux) +musyccbus_match(struct device *parent, void *match, void *aux) { int rv; struct pci_attach_args *pa = aux; @@ -163,7 +163,7 @@ musycc_softc_attach(struct device *parent, struct device *self, void *aux) } void -ebus_softc_attach(struct device *parent, struct device *self, void *aux) +musyccbus_softc_attach(struct device *parent, struct device *self, void *aux) { struct ebus_dev rom; struct musycc_attach_args ma; @@ -284,7 +284,7 @@ failed: } int -ebus_print(void *aux, const char *pnp) +musyccbus_print(void *aux, const char *pnp) { struct musycc_attach_args *ma = aux; |