some cleanup for -Wall
This commit is contained in:
parent
24de9e4a12
commit
7a83b5d468
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: apecs.c,v 1.8 1996/07/09 00:54:25 cgd Exp $ */
|
||||
/* $NetBSD: apecs.c,v 1.9 1996/07/11 03:30:11 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -44,7 +44,9 @@
|
|||
#include <dev/pci/pcivar.h>
|
||||
#include <alpha/pci/apecsreg.h>
|
||||
#include <alpha/pci/apecsvar.h>
|
||||
#if defined(DEC_2100_A50)
|
||||
#include <alpha/pci/pci_2100_a50.h>
|
||||
#endif
|
||||
|
||||
int apecsmatch __P((struct device *, void *, void *));
|
||||
void apecsattach __P((struct device *, struct device *, void *));
|
||||
|
@ -68,7 +70,6 @@ apecsmatch(parent, match, aux)
|
|||
struct device *parent;
|
||||
void *match, *aux;
|
||||
{
|
||||
struct cfdata *cf = match;
|
||||
struct confargs *ca = aux;
|
||||
|
||||
/* Make sure that we're looking for an APECS. */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cia.c,v 1.7 1996/07/09 00:54:38 cgd Exp $ */
|
||||
/* $NetBSD: cia.c,v 1.8 1996/07/11 03:30:13 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -70,7 +70,6 @@ ciamatch(parent, match, aux)
|
|||
struct device *parent;
|
||||
void *match, *aux;
|
||||
{
|
||||
struct cfdata *cf = match;
|
||||
struct confargs *ca = aux;
|
||||
|
||||
/* Make sure that we're looking for a CIA. */
|
||||
|
@ -108,7 +107,6 @@ ciaattach(parent, self, aux)
|
|||
struct device *parent, *self;
|
||||
void *aux;
|
||||
{
|
||||
struct confargs *ca = aux;
|
||||
struct cia_softc *sc = (struct cia_softc *)self;
|
||||
struct cia_config *ccp;
|
||||
struct pcibus_attach_args pba;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lca.c,v 1.6 1996/07/09 00:54:46 cgd Exp $ */
|
||||
/* $NetBSD: lca.c,v 1.7 1996/07/11 03:30:14 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -44,6 +44,9 @@
|
|||
#include <dev/pci/pcivar.h>
|
||||
#include <alpha/pci/lcareg.h>
|
||||
#include <alpha/pci/lcavar.h>
|
||||
#if defined(DEC_AXPPCI_33)
|
||||
#include <alpha/pci/pci_axppci_33.h>
|
||||
#endif
|
||||
|
||||
int lcamatch __P((struct device *, void *, void *));
|
||||
void lcaattach __P((struct device *, struct device *, void *));
|
||||
|
@ -67,7 +70,6 @@ lcamatch(parent, match, aux)
|
|||
struct device *parent;
|
||||
void *match, *aux;
|
||||
{
|
||||
struct cfdata *cf = match;
|
||||
struct confargs *ca = aux;
|
||||
|
||||
/* Make sure that we're looking for a LCA. */
|
||||
|
|
Loading…
Reference in New Issue