aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/ioctl.h
diff options
context:
space:
mode:
authorForest Bond <forest@alittletooquiet.net>2009-06-13 07:38:31 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 15:01:32 -0400
commit92b96797118e5836294a6d42a5a8e10b86f50e3f (patch)
tree1eceb1d70adc634da006f38c951a515de746e2c2 /drivers/staging/vt6656/ioctl.h
parent36c7928c3e948cf8862d4b5c3df27c5a841cb503 (diff)
Staging: Add pristine upstream vt6656 driver sources to drivers/staging/vt6656.
Add pristine upstream vt6656 driver sources to drivers/staging/vt6656. These files were copied from the driver directory in the upstream source archive, available here: http://www.viaarena.com/Driver/VT6656_Linux_src_v1.19_12_x86.zip After copying, trailing whitespace was stripped. This is GPL-licensed code. Signed-off-by: Forest Bond <forest@alittletooquiet.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6656/ioctl.h')
-rw-r--r--drivers/staging/vt6656/ioctl.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/drivers/staging/vt6656/ioctl.h b/drivers/staging/vt6656/ioctl.h
new file mode 100644
index 00000000000..9c6816eab46
--- /dev/null
+++ b/drivers/staging/vt6656/ioctl.h
@@ -0,0 +1,74 @@
1/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * File: hostap.h
20 *
21 * Purpose:
22 *
23 * Author: Lyndon Chen
24 *
25 * Date: May 21, 2003
26 *
27 */
28
29
30#ifndef __IOCTL_H__
31#define __IOCTL_H__
32
33#if !defined(__DEVICE_H__)
34#include "device.h"
35#endif
36
37
38/*--------------------- Export Definitions -------------------------*/
39
40
41/*--------------------- Export Classes ----------------------------*/
42
43/*--------------------- Export Variables --------------------------*/
44
45/*--------------------- Export Functions --------------------------*/
46
47
48#ifdef __cplusplus
49extern "C" { /* Assume C declarations for C++ */
50#endif /* __cplusplus */
51
52
53int private_ioctl(PSDevice pDevice, struct ifreq *rq);
54
55/*
56VOID vConfigWEPKey (
57 IN PSDevice pDevice,
58 IN DWORD dwKeyIndex,
59 IN PBYTE pbyKey,
60 IN ULONG uKeyLength
61 );
62*/
63
64#ifdef __cplusplus
65} /* End of extern "C" { */
66#endif /* __cplusplus */
67
68
69
70
71#endif // __IOCTL_H__
72
73
74