diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-08-29 22:55:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-08-29 22:55:49 +0000 |
commit | 9a5ca251c408e2a8fe0853bfe41873ed974aa526 (patch) | |
tree | 0e74df949ece4ee06a744f669a659f294df0e91b | |
parent | 4b0ed60fc9f4e410964e0018602464570f431647 (diff) |
Add forward declaration for struct to_softc such that the firmware builder
compiles without warnings again.
-rw-r--r-- | sys/dev/ic/tivar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/tivar.h b/sys/dev/ic/tivar.h index 492c0a63f23..ffcf523e23d 100644 --- a/sys/dev/ic/tivar.h +++ b/sys/dev/ic/tivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tivar.h,v 1.1 2009/08/29 21:12:55 kettenis Exp $ */ +/* $OpenBSD: tivar.h,v 1.2 2009/08/29 22:55:48 kettenis Exp $ */ /* * Copyright (c) 2004 Theo de Raadt <deraadt@openbsd.org> @@ -42,5 +42,7 @@ struct tigon_firmware { u_char data[1]; }; +struct ti_softc; + int ti_attach(struct ti_softc *sc); int ti_intr(void *); |