From f5fb9588cc01d5d777198c1cb56ed543c1d6422f Mon Sep 17 00:00:00 2001 From: trasz Date: Fri, 8 Jan 2010 15:46:27 +0000 Subject: Put mly_timeout() under MLY_DEBUG, so that newer GCC versions don't complain about unused static function. Reviewed by: scottl --- sys/dev/mly/mly.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/dev/mly/mly.c') diff --git a/sys/dev/mly/mly.c b/sys/dev/mly/mly.c index 1f61542..b26c90a 100644 --- a/sys/dev/mly/mly.c +++ b/sys/dev/mly/mly.c @@ -117,9 +117,9 @@ static void mly_printstate(struct mly_softc *sc); static void mly_print_command(struct mly_command *mc); static void mly_print_packet(struct mly_command *mc); static void mly_panic(struct mly_softc *sc, char *reason); +static int mly_timeout(struct mly_softc *sc); #endif void mly_print_controller(int controller); -static int mly_timeout(struct mly_softc *sc); static d_open_t mly_user_open; @@ -2981,6 +2981,7 @@ mly_user_health(struct mly_softc *sc, struct mly_user_health *uh) return(error); } +#ifdef MLY_DEBUG static int mly_timeout(struct mly_softc *sc) { @@ -3000,3 +3001,4 @@ mly_timeout(struct mly_softc *sc) return (0); } +#endif -- cgit v1.1