Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Nov 2012 16:39:02 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r242435 - head/sys/dev/sound/pcm
Message-ID:  <201211011639.qA1Gd2Vm032676@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Thu Nov  1 16:39:01 2012
New Revision: 242435
URL: http://svn.freebsd.org/changeset/base/242435

Log:
  Add missing inclusion guard.

Modified:
  head/sys/dev/sound/pcm/mixer.h

Modified: head/sys/dev/sound/pcm/mixer.h
==============================================================================
--- head/sys/dev/sound/pcm/mixer.h	Thu Nov  1 16:20:02 2012	(r242434)
+++ head/sys/dev/sound/pcm/mixer.h	Thu Nov  1 16:39:01 2012	(r242435)
@@ -27,6 +27,9 @@
  * $FreeBSD$
  */
 
+#ifndef _PCM_MIXER_H_
+#define	_PCM_MIXER_H_
+
 struct snd_mixer *mixer_create(device_t dev, kobj_class_t cls, void *devinfo,
     const char *desc);
 int mixer_delete(struct snd_mixer *m);
@@ -75,3 +78,5 @@ extern int mixer_count;
 			    sizeof(oss_mixer_enuminfo))
 
 #define MIXER_DECLARE(name) static DEFINE_CLASS(name, name ## _methods, MIXER_SIZE)
+
+#endif				/* _PCM_MIXER_H_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211011639.qA1Gd2Vm032676>