Module Name: src
Committed By: maya
Date: Mon Nov 19 09:23:05 UTC 2018
Modified Files:
src/sys/dev: audio_dai.h
Log Message:
include sys/param.h for EINVAL used in this header.
(Make it more standalone)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/audio_dai.h
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/audio_dai.h
diff -u src/sys/dev/audio_dai.h:1.2 src/sys/dev/audio_dai.h:1.3
--- src/sys/dev/audio_dai.h:1.2 Fri May 11 22:48:55 2018
+++ src/sys/dev/audio_dai.h Mon Nov 19 09:23:05 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: audio_dai.h,v 1.2 2018/05/11 22:48:55 jmcneill Exp $ */
+/* $NetBSD: audio_dai.h,v 1.3 2018/11/19 09:23:05 maya Exp $ */
/*-
* Copyright (c) 2018 Jared McNeill <[email protected]>
@@ -29,6 +29,8 @@
#ifndef _DEV_AUDIO_DAI_H
#define _DEV_AUDIO_DAI_H
+#include <sys/param.h>
+
#include <dev/audio_if.h>
#define AUDIO_DAI_FORMAT_MASK __BITS(3,0)