aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ozwpan/ozappif.h
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
commit8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch)
treea8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /drivers/staging/ozwpan/ozappif.h
parent406089d01562f1e2bf9f089fd7637009ebaad589 (diff)
Patched in Tegra support.
Diffstat (limited to 'drivers/staging/ozwpan/ozappif.h')
-rw-r--r--drivers/staging/ozwpan/ozappif.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/drivers/staging/ozwpan/ozappif.h b/drivers/staging/ozwpan/ozappif.h
deleted file mode 100644
index 449a6ba8233..00000000000
--- a/drivers/staging/ozwpan/ozappif.h
+++ /dev/null
@@ -1,38 +0,0 @@
1/* -----------------------------------------------------------------------------
2 * Copyright (c) 2011 Ozmo Inc
3 * Released under the GNU General Public License Version 2 (GPLv2).
4 * -----------------------------------------------------------------------------
5 */
6#ifndef _OZAPPIF_H
7#define _OZAPPIF_H
8
9#include "ozeventdef.h"
10
11#define OZ_IOCTL_MAGIC 0xf4
12
13struct oz_mac_addr {
14 __u8 a[6];
15};
16
17#define OZ_MAX_PDS 8
18
19struct oz_pd_list {
20 __u32 count;
21 struct oz_mac_addr addr[OZ_MAX_PDS];
22};
23
24#define OZ_MAX_BINDING_LEN 32
25
26struct oz_binding_info {
27 char name[OZ_MAX_BINDING_LEN];
28};
29
30#define OZ_IOCTL_GET_PD_LIST _IOR(OZ_IOCTL_MAGIC, 0, struct oz_pd_list)
31#define OZ_IOCTL_SET_ACTIVE_PD _IOW(OZ_IOCTL_MAGIC, 1, struct oz_mac_addr)
32#define OZ_IOCTL_GET_ACTIVE_PD _IOR(OZ_IOCTL_MAGIC, 2, struct oz_mac_addr)
33#define OZ_IOCTL_ADD_BINDING _IOW(OZ_IOCTL_MAGIC, 3, struct oz_binding_info)
34#define OZ_IOCTL_REMOVE_BINDING _IOW(OZ_IOCTL_MAGIC, 4, struct oz_binding_info)
35#define OZ_IOCTL_MAX 5
36
37
38#endif /* _OZAPPIF_H */