diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-18 05:47:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-18 05:47:36 +0000 |
commit | 386f820cf74bf49a08dc198c09a2dd06cde351c4 (patch) | |
tree | 29d8a33ec30ae9468203d60ed416bccf9e1aa164 /sys | |
parent | d43d7936b2ed40f202743044c99b8a0b0d552164 (diff) |
move proto to the right place
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpi/acpiprt.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/acpi/acpiprt.c b/sys/dev/acpi/acpiprt.c index 8f95f1c1b10..ea5ff8330bc 100644 --- a/sys/dev/acpi/acpiprt.c +++ b/sys/dev/acpi/acpiprt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpiprt.c,v 1.7 2006/11/27 23:43:47 jordan Exp $ */ +/* $OpenBSD: acpiprt.c,v 1.8 2006/12/18 05:47:35 deraadt Exp $ */ /* * Copyright (c) 2006 Mark Kettenis <kettenis@openbsd.org> * @@ -42,6 +42,7 @@ int acpiprt_match(struct device *, void *, void *); void acpiprt_attach(struct device *, struct device *, void *); +int acpiprt_getirq(union acpi_resource *crs, void *arg); struct acpiprt_softc { struct device sc_dev; @@ -109,9 +110,6 @@ acpiprt_attach(struct device *parent, struct device *self, void *aux) } int -acpiprt_getirq(union acpi_resource *crs, void *arg); - -int acpiprt_getirq(union acpi_resource *crs, void *arg) { int *irq = (int *)arg; |