Merge branch 'drm-vmware-next' into drm-core-next
[linux-2.6/libata-dev.git] / drivers / staging / rt2860 / rtmp_os.h
blob94c30c8ca6624f0410bf5b0e54d8d8fce91cd32f
1 /*
2 *************************************************************************
3 * Ralink Tech Inc.
4 * 5F., No.36, Taiyuan St., Jhubei City,
5 * Hsinchu County 302,
6 * Taiwan, R.O.C.
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 * *
25 *************************************************************************
27 Module Name:
28 rtmp_os.h
30 Abstract:
32 Revision History:
33 Who When What
34 --------- ---------- ----------------------------------------------
37 #ifndef __RTMP_OS_H__
38 #define __RTMP_OS_H__
40 #ifdef LINUX
41 #include "rt_linux.h"
42 #endif /* LINUX // */
45 This data structure mainly strip some callback function defined in
46 "struct net_device" in kernel source "include/linux/netdevice.h".
48 The definition of this data structure may various depends on different
49 OS. Use it carefully.
51 struct rt_rtmp_os_netdev_op_hook {
52 const struct net_device_ops *netdev_ops;
53 void *priv;
54 int priv_flags;
55 unsigned char devAddr[6];
56 unsigned char devName[16];
57 unsigned char needProtcted;
60 typedef enum _RTMP_TASK_STATUS_ {
61 RTMP_TASK_STAT_UNKNOWN = 0,
62 RTMP_TASK_STAT_INITED = 1,
63 RTMP_TASK_STAT_RUNNING = 2,
64 RTMP_TASK_STAT_STOPED = 4,
65 } RTMP_TASK_STATUS;
66 #define RTMP_TASK_CAN_DO_INSERT (RTMP_TASK_STAT_INITED |RTMP_TASK_STAT_RUNNING)
68 #define RTMP_OS_TASK_NAME_LEN 16
69 struct rt_rtmp_os_task {
70 char taskName[RTMP_OS_TASK_NAME_LEN];
71 void *priv;
72 /*unsigned long taskFlags; */
73 RTMP_TASK_STATUS taskStatus;
74 #ifndef KTHREAD_SUPPORT
75 struct semaphore taskSema;
76 struct pid *taskPID;
77 struct completion taskComplete;
78 #endif
79 unsigned char task_killed;
80 #ifdef KTHREAD_SUPPORT
81 struct task_struct *kthread_task;
82 wait_queue_head_t kthread_q;
83 BOOLEAN kthread_running;
84 #endif
87 int RtmpOSIRQRequest(struct net_device *pNetDev);
88 int RtmpOSIRQRelease(struct net_device *pNetDev);
90 #endif /* __RMTP_OS_H__ // */