Module Name: src Committed By: gson Date: Mon Jan 26 09:25:09 UTC 2015
Modified Files: src/sys/dev/usb: uaudio.c Log Message: Include opt_usb.h so that "options UAUDIO_DEBUG" works. To generate a diff of this commit: cvs rdiff -u -r1.140 -r1.141 src/sys/dev/usb/uaudio.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/uaudio.c diff -u src/sys/dev/usb/uaudio.c:1.140 src/sys/dev/usb/uaudio.c:1.141 --- src/sys/dev/usb/uaudio.c:1.140 Mon Sep 22 14:25:32 2014 +++ src/sys/dev/usb/uaudio.c Mon Jan 26 09:25:08 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: uaudio.c,v 1.140 2014/09/22 14:25:32 nat Exp $ */ +/* $NetBSD: uaudio.c,v 1.141 2015/01/26 09:25:08 gson Exp $ */ /* * Copyright (c) 1999, 2012 The NetBSD Foundation, Inc. @@ -37,7 +37,11 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uaudio.c,v 1.140 2014/09/22 14:25:32 nat Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uaudio.c,v 1.141 2015/01/26 09:25:08 gson Exp $"); + +#ifdef _KERNEL_OPT +#include "opt_usb.h" +#endif #include <sys/param.h> #include <sys/systm.h>