Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Jan 2013 10:59:43 +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: r246115 - head/sys/dev/usb
Message-ID:  <201301301059.r0UAxhZc001368@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Wed Jan 30 10:59:42 2013
New Revision: 246115
URL: http://svnweb.freebsd.org/changeset/base/246115

Log:
  Add missing header file inclusion guard.

Modified:
  head/sys/dev/usb/ufm_ioctl.h

Modified: head/sys/dev/usb/ufm_ioctl.h
==============================================================================
--- head/sys/dev/usb/ufm_ioctl.h	Wed Jan 30 10:23:38 2013	(r246114)
+++ head/sys/dev/usb/ufm_ioctl.h	Wed Jan 30 10:59:42 2013	(r246115)
@@ -1,3 +1,4 @@
+/* $FreeBSD$ */
 /*-
  * Copyright (c) 2001 M. Warner Losh
  * All rights reserved.
@@ -28,7 +29,8 @@
  * its contributors.
  */
 
-/*  $FreeBSD$ */
+#ifndef _UFM_IOCTL_H_
+#define	_UFM_IOCTL_H_
 
 #include <sys/ioccom.h>
 
@@ -37,3 +39,5 @@
 #define	FM_START	_IOWR('U', 202, int)
 #define	FM_STOP		_IOWR('U', 203, int)
 #define	FM_GET_STAT	_IOWR('U', 204, int)
+
+#endif			/* _UFM_IOCTL_H_ */



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