aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/cxt1e1/sbeproc.h
diff options
context:
space:
mode:
authorBob Beers <bob.beers@gmail.com>2010-03-04 08:40:46 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 14:35:31 -0400
commit50ee11fe383255db8e5c3307319d470015616f27 (patch)
treed6900a217a10602d53199d360487548650e100e2 /drivers/staging/cxt1e1/sbeproc.h
parent588063a10f4e21cd3a2cc693c0c1ebb846ac4ce5 (diff)
staging: Add driver to support wanPMC-CxT1E1 card.
Obviously still needs serious attention, but it compiles. Original author: Rick Dobbs Add driver to support wanPMC-CxT1E1 card. This card provides 1-4 ports of T1E1 in PMC form factor. Note, Rick doesn't want his email showing up as the "From:" author, but has given his blessing to have the code included in the kernel tree. Signed-off-by: Bob Beers <bob.beers@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/cxt1e1/sbeproc.h')
-rw-r--r--drivers/staging/cxt1e1/sbeproc.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/drivers/staging/cxt1e1/sbeproc.h b/drivers/staging/cxt1e1/sbeproc.h
new file mode 100644
index 00000000000..4aa53f44ec0
--- /dev/null
+++ b/drivers/staging/cxt1e1/sbeproc.h
@@ -0,0 +1,52 @@
1/*
2 * $Id: sbeproc.h,v 1.2 2005/10/17 23:55:28 rickd PMCC4_3_1B $
3 */
4
5#ifndef _INC_SBEPROC_H_
6#define _INC_SBEPROC_H_
7
8/*-----------------------------------------------------------------------------
9 * sbeproc.h -
10 *
11 * Copyright (C) 2004-2005 SBE, Inc.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * For further information, contact via email: support@sbei.com
24 * SBE, Inc. San Ramon, California U.S.A.
25 *-----------------------------------------------------------------------------
26 * RCS info:
27 * RCS revision: $Revision: 1.2 $
28 * Last changed on $Date: 2005/10/17 23:55:28 $
29 * Changed by $Author: rickd $
30 *-----------------------------------------------------------------------------
31 * $Log: sbeproc.h,v $
32 * Revision 1.2 2005/10/17 23:55:28 rickd
33 * sbecom_proc_brd_init() is an declared an __init function.
34 *
35 * Revision 1.1 2005/09/28 00:10:09 rickd
36 * Remove unneeded inclusion of c4_private.h.
37 *
38 * Revision 1.0 2005/05/10 22:21:46 rickd
39 * Initial check-in.
40 *
41 *-----------------------------------------------------------------------------
42 */
43
44
45#ifdef CONFIG_PROC_FS
46#ifdef __KERNEL__
47void sbecom_proc_brd_cleanup (ci_t *);
48int __init sbecom_proc_brd_init (ci_t *);
49
50#endif /*** __KERNEL__ ***/
51#endif /*** CONFIG_PROC_FS ***/
52#endif /*** _INC_SBEPROC_H_ ***/