aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/iwi/if_iwi_ioctl.h
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2014-03-29 19:53:04 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2014-03-29 19:53:04 +0000
commit4982d693acda5544f7f94e01714caba872a6dbfb (patch)
treec27bd461c5b80af172a36d242fcbf4a33abfb3a0 /sys/dev/iwi/if_iwi_ioctl.h
parent81a44173f0bc725ca0dfc179aad9bc440c69dcd0 (diff)
downloadsrc-4982d693acda5544f7f94e01714caba872a6dbfb.tar.gz
src-4982d693acda5544f7f94e01714caba872a6dbfb.zip
Add support to export the contents of the notification updates from the firmware.
Right now the NIC isn't actually exporting useful data. I'm not quite sure why this is. :(
Notes
Notes: svn path=/head/; revision=263920
Diffstat (limited to 'sys/dev/iwi/if_iwi_ioctl.h')
-rw-r--r--sys/dev/iwi/if_iwi_ioctl.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/sys/dev/iwi/if_iwi_ioctl.h b/sys/dev/iwi/if_iwi_ioctl.h
new file mode 100644
index 000000000000..0f4f447aecc5
--- /dev/null
+++ b/sys/dev/iwi/if_iwi_ioctl.h
@@ -0,0 +1,25 @@
+/*-
+ * Copyright (c) 2014 Adrian Chadd <adrian@FreeBSD.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * $FreeBSD$
+ */
+#ifndef __IF_IWI_IOCTL_H__
+#define __IF_IWI_IOCTL_H__
+
+/* XXX how should I pick appropriate ioctl numbers? */
+#define SIOCGIWISTATS _IOWR('i', 147, struct ifreq)
+#define SIOCZIWISTATS _IOWR('i', 148, struct ifreq)
+
+#endif /* __IF_IWI_IOCTL_H__ */