diff options
author | 2010-08-31 19:20:55 +0000 | |
---|---|---|
committer | 2010-08-31 19:20:55 +0000 | |
commit | 25eae499be57bf2fbf83881a46509231586a25d7 (patch) | |
tree | ac65edf21f7728688f8aabc3237d8dd6c4cd60e3 | |
parent | - catching up with upstream mdoclint, recognise IMPLEMENTATION NOTES and (diff) | |
download | wireguard-openbsd-25eae499be57bf2fbf83881a46509231586a25d7.tar.xz wireguard-openbsd-25eae499be57bf2fbf83881a46509231586a25d7.zip |
remove argnames from prototype.
no binary change.
-rw-r--r-- | sys/dev/pci/agp_i810.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c index afb367d66b8..8a58a8c8af4 100644 --- a/sys/dev/pci/agp_i810.c +++ b/sys/dev/pci/agp_i810.c @@ -1,4 +1,4 @@ -/* $OpenBSD: agp_i810.c,v 1.67 2010/08/06 13:09:52 oga Exp $ */ +/* $OpenBSD: agp_i810.c,v 1.68 2010/08/31 19:20:55 oga Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -91,7 +91,7 @@ struct agp_i810_softc { }; void agp_i810_attach(struct device *, struct device *, void *); -int agp_i810_activate(struct device *arg, int act); +int agp_i810_activate(struct device *, int); void agp_i810_configure(struct agp_i810_softc *); int agp_i810_probe(struct device *, void *, void *); int agp_i810_get_chiptype(struct pci_attach_args *); |