-/* $OpenBSD: addcom_isa.c,v 1.7 2022/04/06 18:59:28 naddy Exp $ */
+/* $OpenBSD: addcom_isa.c,v 1.8 2024/05/28 05:46:32 jsg Exp $ */
/* $NetBSD: addcom_isa.c,v 1.2 2000/04/21 20:13:41 explorer Exp $ */
/*
};
int
-addcomprobe(parent, self, aux)
- struct device *parent;
- void *self, *aux;
+addcomprobe(struct device *parent, void *self, void *aux)
{
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;
}
int
-addcomprint(aux, pnp)
- void *aux;
- const char *pnp;
+addcomprint(void *aux, const char *pnp)
{
struct commulti_attach_args *ca = aux;
}
void
-addcomattach(parent, self, aux)
- struct device *parent, *self;
- void *aux;
+addcomattach(struct device *parent, struct device *self, void *aux)
{
struct addcom_softc *sc = (void *)self;
struct isa_attach_args *ia = aux;
}
int
-addcomintr(arg)
- void *arg;
+addcomintr(void *arg)
{
struct addcom_softc *sc = arg;
int intrd, r = 0, i;
-/* $OpenBSD: boca.c,v 1.17 2022/04/06 18:59:28 naddy Exp $ */
+/* $OpenBSD: boca.c,v 1.18 2024/05/28 05:46:32 jsg Exp $ */
/* $NetBSD: boca.c,v 1.15 1996/05/12 23:51:50 mycroft Exp $ */
/*
};
int
-bocaprobe(parent, self, aux)
- struct device *parent;
- void *self;
- void *aux;
+bocaprobe(struct device *parent, void *self, void *aux)
{
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;
}
int
-bocaprint(aux, pnp)
- void *aux;
- const char *pnp;
+bocaprint(void *aux, const char *pnp)
{
struct commulti_attach_args *ca = aux;
}
void
-bocaattach(parent, self, aux)
- struct device *parent, *self;
- void *aux;
+bocaattach(struct device *parent, struct device *self, void *aux)
{
struct boca_softc *sc = (void *)self;
struct isa_attach_args *ia = aux;
}
int
-bocaintr(arg)
- void *arg;
+bocaintr(void *arg)
{
struct boca_softc *sc = arg;
bus_space_tag_t iot = sc->sc_iot;
-/* $OpenBSD: hsq.c,v 1.7 2022/04/06 18:59:28 naddy Exp $ */
+/* $OpenBSD: hsq.c,v 1.8 2024/05/28 05:46:32 jsg Exp $ */
/*-
* Copyright (c) 1999 Denis A. Doroshenko. All rights reserved.
};
int
-hsqprobe(parent, self, aux)
- struct device *parent;
- void *self;
- void *aux;
+hsqprobe(struct device *parent, void *self, void *aux)
{
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;
}
int
-hsqprint(aux, pnp)
- void *aux;
- const char *pnp;
+hsqprint(void *aux, const char *pnp)
{
struct commulti_attach_args *ca = aux;
}
void
-hsqattach(parent, self, aux)
- struct device *parent, *self;
- void *aux;
+hsqattach(struct device *parent, struct device *self, void *aux)
{
struct hsq_softc *sc = (void *)self;
struct isa_attach_args *ia = aux;
}
int
-hsqintr(arg)
- void *arg;
+hsqintr(void *arg)
{
struct hsq_softc *sc = arg;
bus_space_tag_t iot = sc->sc_iot;