plateform
stringclasses
1 value
repo_name
stringclasses
2 values
name
stringlengths
1
78
ext
stringclasses
2 values
path
stringlengths
15
1.11k
size
int64
1
8.55M
source_encoding
stringclasses
11 values
md5
stringlengths
32
32
text
stringlengths
0
8.49M
google
android
hiddev
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/hid/usbhid/hiddev.c
22,710
utf_8
765673efee04f08a276367fac358c950
/* * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Should you need to contact me, the author, you can do so either by */ #include <linux/poll.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/init.h> #include <linux/input.h> #include <linux/usb.h> #include <linux/hid...
google
android
usbmouse
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/hid/usbhid/usbmouse.c
6,576
utf_8
318f6fa1bfe1274baaeecef1a9f8ac0e
/* * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic */ #include <linux/kernel.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/init.h> #include <linux/usb/input.h> #include <linux/hid.h> /* for apple IDs */ #ifdef CONFIG_USB_HID_MODULE #include "../hid-ids.h" #endif /* * Version ...
google
android
hid-quirks
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/hid/usbhid/hid-quirks.c
16,405
utf_8
3985d44840ab313cb04dcd154019e23b
/* * USB HID quirks support for Linux * * any later version. */ #include <linux/hid.h> #include <linux/export.h> #include <linux/slab.h> #include "../hid-ids.h" /* * Alphabetically sorted blacklist by quirk type. */ static const struct hid_blacklist { __u16 idVendor; __u16 idProduct; __u32 quirks; } hid_black...
google
android
isdn_ttyfax
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_ttyfax.c
25,364
utf_8
66774ef43f5f85d20c8de2f75e85a5ea
/* $Id: isdn_ttyfax.c,v 1.1.2.2 2004/01/12 22:37:19 keil Exp $ * * Linux ISDN subsystem, tty_fax AT-command emulator (linklevel). * * */ #undef ISDN_TTY_FAX_STAT_DEBUG #undef ISDN_TTY_FAX_CMD_DEBUG #include <linux/isdn.h> #include "isdn_common.h" #include "isdn_tty.h" #include "isdn_ttyfax.h" static char *isdn_tty...
google
android
isdnhdlc
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdnhdlc.c
15,810
utf_8
71b9200ec39f316978bd2357de27ad44
/* * isdnhdlc.c -- General purpose ISDN HDLC decoder. * * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <linux/module.h> #include <linux/init.h> #include <linux/crc-ccitt.h> #include <linux/isdn/hdlc.h> #include <linux/bitrev.h> /*-----------------------------------------------------------...
google
android
isdn_v110
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_v110.c
16,538
utf_8
616e89f9ea73d5a7c33266992df0fa9b
/* $Id: isdn_v110.c,v 1.1.2.2 2004/01/12 22:37:19 keil Exp $ * * Linux ISDN subsystem, V.110 related functions (linklevel). * * */ #include <linux/string.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/mm.h> #include <linux/delay.h> #include <linux/isdn.h> #include "isdn_v110.h" #undef ISDN_V1...
google
android
isdn_concap
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_concap.c
2,987
utf_8
2a7d7bcadd22aa07ec67fb9c16a76e6a
/* $Id: isdn_concap.c,v 1.1.2.2 2004/01/12 22:37:19 keil Exp $ * * Linux ISDN subsystem, protocol encapsulation * * */ /* Stuff to support the concap_proto by isdn4linux. isdn4linux - specific * stuff goes here. Stuff that depends only on the concap protocol goes to * another -- protocol specific -- source file....
google
android
isdn_bsdcomp
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_bsdcomp.c
23,872
utf_8
8b228f4e61dc00f7418530a7516bd1f5
/* * James A. Woods, derived from original work by Spencer Thomas * and Joseph Orost. * * Redistribution and use in source and binary forms, with or without * SUCH DAMAGE. */ #include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/types.h> #include <linux/fcntl.h> #include <lin...
google
android
isdn_net
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_net.c
86,529
utf_8
7c1b9db4894a1ac0785275a673b490e5
/* $Id: isdn_net.c,v 1.1.2.2 2004/01/12 22:37:19 keil Exp $ * * Linux ISDN subsystem, network interfaces and related functions (linklevel). * * for info on the protocol, see * http://i4l.zabbadoz.net/i4l/cisco-hdlc.txt */ #include <linux/isdn.h> #include <linux/slab.h> #include <net/arp.h> #in...
google
android
isdn_common
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_common.c
58,043
utf_8
74ef1904dbe68e1261affcba8e09b68c
/* $Id: isdn_common.c,v 1.1.2.3 2004/02/10 01:07:13 keil Exp $ * * Linux ISDN subsystem, common used functions (linklevel). * * */ #include <linux/module.h> #include <linux/init.h> #include <linux/poll.h> #include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/isdn.h> #include <linux/mutex.h> #include "...
google
android
isdn_tty
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_tty.c
91,187
utf_8
41406250f04436f628c792503d169eb9
/* * Linux ISDN subsystem, tty functions and AT-command emulator (linklevel). * * */ #undef ISDN_TTY_STAT_DEBUG #include <linux/isdn.h> #include <linux/serial.h> /* ASYNC_* flags */ #include <linux/slab.h> #include <linux/delay.h> #include <linux/mutex.h> #include "isdn_common.h" #include "isdn_tty.h" #ifdef CONFIG...
google
android
isdn_x25iface
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_x25iface.c
9,953
utf_8
1d4814f8064bbf71319efa797b40aaff
/* $Id: isdn_x25iface.c,v 1.1.2.2 2004/01/12 22:37:19 keil Exp $ * * Linux ISDN subsystem, X.25 related functions * * * stuff needed to support the Linux X.25 PLP code on top of devices that * can provide a lab_b service using the concap_proto mechanism. * This module supports a network interface which provides ...
google
android
isdn_audio
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_audio.c
20,305
utf_8
85e9db632482aed08e040ed4a084c884
/* $Id: isdn_audio.c,v 1.1.2.2 2004/01/12 22:37:18 keil Exp $ * * Linux ISDN subsystem, audio conversion and compression (linklevel). * * */ #include <linux/isdn.h> #include <linux/slab.h> #include "isdn_audio.h" #include "isdn_common.h" char *isdn_audio_revision = "$Revision: 1.1.2.2 $"; /* * Misc. lookup-tables...
google
android
isdn_ppp
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/i4l/isdn_ppp.c
80,353
utf_8
84c300f5e583d04c0595ce8c1adceca5
/* $Id: isdn_ppp.c,v 1.1.2.3 2004/02/10 01:07:13 keil Exp $ * * Linux ISDN subsystem, functions for synchronous PPP (linklevel). * * */ #include <linux/isdn.h> #include <linux/poll.h> #include <linux/ppp-comp.h> #include <linux/slab.h> #ifdef CONFIG_IPPP_FILTER #include <linux/filter.h> #endif #include "isdn_commo...
google
android
isdnloop
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/isdnloop/isdnloop.c
38,890
utf_8
f3b7efa6e7d88cdb785fc4676f708485
/* $Id: isdnloop.c,v 1.11.6.7 2001/11/11 19:54:31 kai Exp $ * * ISDN low-level module implementing a dummy loop driver. * * */ #include <linux/module.h> #include <linux/interrupt.h> #include <linux/slab.h> #include <linux/init.h> #include <linux/sched.h> #include "isdnloop.h" static char *isdnloop_id = "loop0"; MO...
google
android
capidrv
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/capi/capidrv.c
71,305
utf_8
4f07fd3c4123c5bf758c9b19d0d35d53
/* $Id: capidrv.c,v 1.1.2.2 2004/01/12 23:17:24 keil Exp $ * * ISDN4Linux Driver, using capi20 interface (kernelcapi) * * */ #include <linux/module.h> #include <linux/errno.h> #include <linux/kernel.h> #include <linux/major.h> #include <linux/slab.h> #include <linux/fcntl.h> #include <linux/fs.h> #include <linux/s...
google
android
capiutil
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/capi/capiutil.c
22,143
utf_8
bb648c294c971fd2e41b4db41ad97af6
/* $Id: capiutil.c,v 1.13.6.4 2001/09/23 22:24:33 kai Exp $ * * CAPI 2.0 convert capi message to capi message struct * * From CAPI 2.0 Development Kit AVM 1995 (msg.c) * */ #include <linux/module.h> #include <linux/string.h> #include <linux/ctype.h> #include <linux/stddef.h> #include <linux/kernel.h> #include <li...
google
android
kcapi
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/capi/kcapi.c
30,434
utf_8
f4515e7fa379d607b9530661dbefecca
/* $Id: kcapi.c,v 1.1.2.8 2004/03/26 19:57:20 armin Exp $ * * Kernel CAPI 2.0 Module * * */ #define AVMB1_COMPAT #include "kcapi.h" #include <linux/module.h> #include <linux/mm.h> #include <linux/interrupt.h> #include <linux/ioport.h> #include <linux/proc_fs.h> #include <linux/sched.h> #include <linux/seq_file.h> ...
google
android
capi
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/capi/capi.c
32,981
utf_8
6d6b06cbbbc9d16c803469bf80dfc1ce
/* $Id: capi.c,v 1.1.2.7 2004/04/28 09:48:59 armin Exp $ * * CAPI 2.0 Interface for Linux * * */ #include <linux/module.h> #include <linux/errno.h> #include <linux/kernel.h> #include <linux/major.h> #include <linux/sched.h> #include <linux/slab.h> #include <linux/fcntl.h> #include <linux/fs.h> #include <linux/sign...
google
android
capilib
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/capi/capilib.c
4,630
utf_8
a15fa9b6a1e1c4f4f2cf3232440afaf4
#include <linux/slab.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/isdn/capilli.h> #define DBG(format, arg...) do { \ printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \ } while (0) struct capilib_msgidqueue { struct capilib_msgidqueue *next; u16 msgid; }; struct capilib_n...
google
android
kcapi_proc
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/capi/kcapi_proc.c
7,547
utf_8
a96d1dd14d62f238b65e4eeb5595c9a3
/* * Kernel CAPI 2.0 Module - /proc/capi handling * * */ #include "kcapi.h" #include <linux/proc_fs.h> #include <linux/seq_file.h> #include <linux/init.h> #include <linux/export.h> static char *state2str(unsigned short state) { switch (state) { case CAPI_CTR_DETECTED: return "detected"; case CAPI_CTR_LOADING: re...
google
android
icn
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/icn/icn.c
42,483
utf_8
df4d3ae1cc07f61e39603b028be9ce5f
/* $Id: icn.c,v 1.65.6.8 2001/09/23 22:24:55 kai Exp $ * * ISDN low-level module for the ICN active ISDN-Card. * * */ #include "icn.h" #include <linux/module.h> #include <linux/init.h> #include <linux/slab.h> #include <linux/sched.h> static int portbase = ICN_BASEADDR; static unsigned long membase = ICN_MEMADDR; s...
google
android
hysdn_procconf
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hysdn_procconf.c
13,395
utf_8
dc440ae6de85ac757ed30dc8882c1cf9
/* $Id: hysdn_procconf.c,v 1.8.6.4 2001/09/23 22:24:54 kai Exp $ * * Linux driver for HYSDN cards, /proc/net filesystem dir and conf functions. * * */ #include <linux/cred.h> #include <linux/module.h> #include <linux/poll.h> #include <linux/proc_fs.h> #include <linux/pci.h> #include <linux/slab.h> #include <linux/...
google
android
hysdn_net
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hysdn_net.c
10,140
utf_8
bff0653718d20f77a432c64a58c4b80a
/* $Id: hysdn_net.c,v 1.8.6.4 2001/09/23 22:24:54 kai Exp $ * * Linux driver for HYSDN cards, net (ethernet type) handling routines. * * */ #include <linux/module.h> #include <linux/signal.h> #include <linux/kernel.h> #include <linux/netdevice.h> #include <linux/etherdevice.h> #include <linux/skbuff.h> #include <l...
google
android
hysdn_boot
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hysdn_boot.c
13,842
utf_8
2a9ef4e996fc9a23c84474afcad7516d
/* $Id: hysdn_boot.c,v 1.4.6.4 2001/09/23 22:24:54 kai Exp $ * * Linux driver for HYSDN cards * specific routines for booting and pof handling * * */ #include <linux/vmalloc.h> #include <linux/slab.h> #include <asm/uaccess.h> #include "hysdn_defs.h" #include "hysdn_pof.h" /********************************/ /* def...
google
android
hysdn_proclog
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hysdn_proclog.c
11,157
utf_8
7ecd73c2d42bd5124ef6282b3fa85bf8
/* $Id: hysdn_proclog.c,v 1.9.6.3 2001/09/23 22:24:54 kai Exp $ * * Linux driver for HYSDN cards, /proc/net filesystem log functions. * * */ #include <linux/module.h> #include <linux/poll.h> #include <linux/proc_fs.h> #include <linux/sched.h> #include <linux/slab.h> #include <linux/mutex.h> #include <linux/kernel....
google
android
hysdn_sched
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hysdn_sched.c
7,095
utf_8
8fdb304718bf576ff3b37f5977f2abea
/* $Id: hysdn_sched.c,v 1.5.6.4 2001/11/06 21:58:19 kai Exp $ * * Linux driver for HYSDN cards * scheduler routines for handling exchange card <-> pc. * * */ #include <linux/signal.h> #include <linux/kernel.h> #include <linux/ioport.h> #include <linux/interrupt.h> #include <linux/delay.h> #include <asm/io.h> #inc...
google
android
boardergo
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/boardergo.c
16,195
utf_8
0e0eb817cf8b3baad26e4d438c54e92a
/* $Id: boardergo.c,v 1.5.6.7 2001/11/06 21:58:19 kai Exp $ * * Linux driver for HYSDN cards, specific routines for ergo type boards. * * * As all Linux supported cards Champ2, Ergo and Metro2/4 use the same * DPRAM interface and layout with only minor differences all related * stuff is done here, not in separat...
google
android
hycapi
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hycapi.c
22,911
utf_8
f715d51960350861245fde0cc32d292e
/* $Id: hycapi.c,v 1.8.6.4 2001/09/23 22:24:54 kai Exp $ * * Linux driver for HYSDN cards, CAPI2.0-Interface. * * */ #include <linux/module.h> #include <linux/proc_fs.h> #include <linux/seq_file.h> #include <linux/signal.h> #include <linux/kernel.h> #include <linux/skbuff.h> #include <linux/netdevice.h> #include <...
google
android
hysdn_init
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hysdn/hysdn_init.c
6,358
utf_8
547c06097f2a82534e3818e161b39d68
/* $Id: hysdn_init.c,v 1.6.6.6 2001/09/23 22:24:54 kai Exp $ * * Linux driver for HYSDN cards, init functions. * * */ #include <linux/module.h> #include <linux/init.h> #include <linux/poll.h> #include <linux/vmalloc.h> #include <linux/slab.h> #include <linux/pci.h> #include "hysdn_defs.h" static struct pci_device_...
google
android
jade
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/jade.c
8,290
utf_8
943a6214f64303174e59964028d1cf05
/* $Id: jade.c,v 1.9.2.4 2004/01/14 16:04:48 keil Exp $ * * JADE stuff (derived from original hscx.c) * * Author Roland Klabunde * */ #include <linux/init.h> #include "hisax.h" #include "hscx.h" #include "jade.h" #include "isdnl1.h" #include <linux/interrupt.h> #include <linux/slab.h> int JadeVersion(struct...
google
android
st5481_b
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/st5481_b.c
9,957
utf_8
be1866c7fd49645ffe91b9a4e87c9ce7
/* * Driver for ST5481 USB ISDN modem * * Author Frode Isaksen * */ #include <linux/init.h> #include <linux/gfp.h> #include <linux/usb.h> #include <linux/netdevice.h> #include <linux/bitrev.h> #include "st5481.h" static inline void B_L1L2(struct st5481_bcs *bcs, int pr, void *arg) { struct hisax_if *ifc = (...
google
android
st5481_init
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/st5481_init.c
5,409
utf_8
d7d4190ea21507278e64891a825b77c4
/* * Driver for ST5481 USB ISDN modem * * Author Frode Isaksen * */ /* * TODO: * * b layer1 delay? * hotplug / unregister issues * mod_inc/dec_use_count * unify parts of d/b channel usb handling * file header * avoid copy to isoc buffer? * improve usb delay? * merge l1 state machines? * clean up d...
google
android
l3_1tr6
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/l3_1tr6.c
21,608
utf_8
21dff760b79da6f9b7880d11eb2a1df3
/* $Id: l3_1tr6.c,v 2.15.2.3 2004/01/13 14:31:25 keil Exp $ * * German 1TR6 D-channel protocol * * Author Karsten Keil * * For changes and modifications please read * Documentation/isdn/HiSax.cert * */ #include "hisax.h" #include "l3_1tr6.h" #include "isdnl3.h" #include <linux/ctype.h> extern char *HiSax...
google
android
sedlbauer_cs
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/sedlbauer_cs.c
6,209
utf_8
a1d9c6b3c1935ac513876cf0c723170f
/*====================================================================== A Sedlbauer PCMCIA client driver This driver is for the Sedlbauer Speed Star and Speed Star II, which are ISDN PCMCIA Cards. The contents of this file are subject to the Mozilla Public ====================================================...
google
android
callc
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/callc.c
48,145
utf_8
d71fd8b505f093c3a3c5bdb38828d80d
/* $Id: callc.c,v 2.59.2.4 2004/02/11 13:21:32 keil Exp $ * * Author Karsten Keil * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * based on the teles driver from Jan den Ouden * * Thanks to Jan den Ouden * Fritz Elfert * */ #include <linux/module.h> #in...
google
android
isdnl2
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/isdnl2.c
42,735
utf_8
cd9e461e4d4c58920245acb940f1c382
/* $Id: isdnl2.c,v 2.30.2.4 2004/02/11 13:21:34 keil Exp $ * * Author Karsten Keil * based on the teles driver from Jan den Ouden * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * Thanks to Jan den Ouden * Fritz Elfert * */ #include <linux/in...
google
android
asuscom
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/asuscom.c
11,569
utf_8
6fdde12f4dd1cb0339a52a1eae58d391
/* $Id: asuscom.c,v 1.14.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for ASUSCOM NETWORK INC. ISDNLink cards * * Author Karsten Keil * * Thanks to ASUSCOM NETWORK INC. Taiwan and Dynalink NL for information * */ #include <linux/init.h> #include <linux/isapnp.h> #include "hisax.h" #include "is...
google
android
hisax_isac
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hisax_isac.c
22,142
utf_8
ae78a3effe13d7ee66acd3860bfde5bc
/* * Driver for ISAC-S and ISAC-SX * ISDN Subscriber Access Controller for Terminals * * Author Kai Germaschewski * * Thanks to Wizard Computersysteme GmbH, Bremervoerde and * SoHaNet Technology GmbH, Berlin * for supporting the development of this driver */ /* TODO: * specifically handle leve...
google
android
hfc_sx
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfc_sx.c
44,273
utf_8
cccee0f9d3ec83f9c7359f3b4b2b7e0d
/* $Id: hfc_sx.c,v 1.12.2.5 2004/02/11 13:21:33 keil Exp $ * * level driver for Cologne Chip Designs hfc-s+/sp based cards * * Author Werner Cornelius * based on existing driver for CCD HFC PCI cards * */ #include <linux/init.h> #include "hisax.h" #include "hfc_sx.h" #include "isdnl1.h" #inclu...
google
android
avm_pci
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/avm_pci.c
23,154
utf_8
9f5274063d95852a5cd63cb2c95e2b1a
/* $Id: avm_pci.c,v 1.29.2.4 2004/02/11 13:21:32 keil Exp $ * * low level stuff for AVM Fritz!PCI and ISA PnP isdn cards * * Author Karsten Keil * * Thanks to AVM, Berlin for information * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "isdnl1.h" #include <linux/pci.h> #include <...
google
android
hfc_usb
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfc_usb.c
44,651
utf_8
aa5be025ba705fce739c805a2f06f5fa
/* * hfc_usb.c * * $Id: hfc_usb.c,v 2.3.2.24 2007/10/14 08:40:29 mbachem Exp $ * * modular HiSax ISDN driver for Colognechip HFC-S USB chip * * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * See Version Histroy at the bottom of this file * */ #include <linux/types.h> #include <linux/stddef.h> ...
google
android
hscx_irq
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hscx_irq.c
7,285
utf_8
b657974e0852fa6cea348e47653d8ff3
/* $Id: hscx_irq.c,v 1.18.2.3 2004/02/11 13:21:34 keil Exp $ * * low level b-channel stuff for Siemens HSCX * * Author Karsten Keil * * This is an include file for fast inline IRQ stuff * */ static inline void waitforCEC(struct IsdnCardState *cs, int hscx) { int to = 50; while ((READHSCX(cs, hscx, HSCX_...
google
android
config
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/config.c
46,921
utf_8
5d6bd7cd853420ef0b74f39f4f333fda
/* $Id: config.c,v 2.84.2.5 2004/02/11 13:21:33 keil Exp $ * * Author Karsten Keil * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * based on the teles driver from Jan den Ouden * */ #include <linux/types.h> #include <linux/stddef.h> #include <linux/timer.h> #include <linu...
google
android
fsm
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/fsm.c
3,859
utf_8
8712cad4246f297f6512ce194254b189
/* $Id: fsm.c,v 1.14.6.4 2001/09/23 22:24:47 kai Exp $ * * Finite state machine * * Author Karsten Keil * * Thanks to Jan den Ouden * Fritz Elfert * */ #include <linux/module.h> #include <linux/slab.h> #include <linux/init.h> #include "hisax.h" #define FSM_TIMER_DEBUG 0 int FsmNew(struct ...
google
android
telespci
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/telespci.c
9,058
utf_8
6c55418222304689484da8c5f3b18e35
/* $Id: telespci.c,v 2.23.2.3 2004/01/13 14:31:26 keil Exp $ * * low level stuff for Teles PCI isdn cards * * Author Ton van Rosmalen * Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" #include <linux/pci.h> static const char ...
google
android
nj_u
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/nj_u.c
6,921
utf_8
bcc0579f5d73f714620caf300d92bdd1
/* $Id: nj_u.c,v 2.14.2.3 2004/01/13 14:31:26 keil Exp $ * * */ #include <linux/init.h> #include "hisax.h" #include "icc.h" #include "isdnl1.h" #include <linux/pci.h> #include <linux/interrupt.h> #include <linux/ppp_defs.h> #include "netjet.h" static const char *NETjet_U_revision = "$Revision: 2.14.2.3 $"; static u_...
google
android
teleint
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/teleint.c
7,864
utf_8
05ff1a9c2e42fbd755d9e2f890f949b5
/* $Id: teleint.c,v 1.16.2.5 2004/01/19 15:31:50 keil Exp $ * * low level stuff for TeleInt isdn cards * * Author Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hfc_2bs0.h" #include "isdnl1.h" static const char *TeleInt_revision = "$Revision: 1.16.2.5 $"; #define by...
google
android
bkm_a8
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/bkm_a8.c
11,710
utf_8
b175542575bbde436a8eae9a604bd624
/* $Id: bkm_a8.c,v 1.22.2.4 2004/01/15 14:02:34 keil Exp $ * * low level stuff for Scitel Quadro (4*S0, passive) * * Author Roland Klabunde * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "ipac.h" #include "hscx.h" #include "isdnl1.h" #include <linux/pci.h> #include "bkm_ax.h" #de...
google
android
sportster
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/sportster.c
6,498
utf_8
4a9c6d9f8391439d322add349a21bb09
/* $Id: sportster.c,v 1.16.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for USR Sportster internal TA * * Author Karsten Keil * * Thanks to Christian "naddy" Weisgerber (3Com, US Robotics) for documentation * * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #i...
google
android
sedlbauer
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/sedlbauer.c
24,914
utf_8
6b043945bd4a07a1478345a05c5c1c26
/* $Id: sedlbauer.c,v 1.34.2.6 2004/01/24 20:47:24 keil Exp $ * * low level stuff for Sedlbauer cards * includes support for the Sedlbauer speed star (speed star II), * support for the Sedlbauer speed fax+, * support for the Sedlbauer ISDN-Controller PC/104 and * support for the Sedlbauer speed pci * derived fro...
google
android
ipacx
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/ipacx.c
26,976
utf_8
fc80837bde15f805365579a5c3ef1065
/* * * IPACX specific routines * * Author Joerg Petersohn * Derived from hisax_isac.c, isac.c, hscx.c and others * * */ #include <linux/kernel.h> #include <linux/slab.h> #include <linux/init.h> #include "hisax_if.h" #include "hisax.h" #include "isdnl1.h" #include "ipacx.h" #define DBUSY_TIMER_VALUE 80 #de...
google
android
jade_irq
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/jade_irq.c
6,389
utf_8
80d420f4885df995ad0d9e24834bd178
/* $Id: jade_irq.c,v 1.7.2.4 2004/02/11 13:21:34 keil Exp $ * * Low level JADE IRQ stuff (derived from original hscx_irq.c) * * Author Roland Klabunde * */ static inline void waitforCEC(struct IsdnCardState *cs, int jade, int reg) { int to = 50; int mask = (reg == jade_HDLC_XCMD ? jadeSTAR_XCEC : jadeSTAR...
google
android
gazel
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/gazel.c
16,011
utf_8
628f96a0b818684cc9cb145e12a2d59a
/* $Id: gazel.c,v 2.19.2.4 2004/01/14 16:04:48 keil Exp $ * * low level stuff for Gazel isdn cards * * Author BeWan Systems * based on source code from Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" #include "ipac.h" #includ...
google
android
st5481_d
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/st5481_d.c
19,522
utf_8
bca803bc47e617a4ccd1e7a8c54c3005
/* * Driver for ST5481 USB ISDN modem * * Author Frode Isaksen * */ #include <linux/init.h> #include <linux/gfp.h> #include <linux/usb.h> #include <linux/netdevice.h> #include "st5481.h" static void ph_connect(struct st5481_adapter *adapter); static void ph_disconnect(struct st5481_adapter *adapter); static ...
google
android
q931
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/q931.c
31,554
utf_8
98b6330cf40993b19694f9b4f4ef1fb2
/* $Id: q931.c,v 1.12.2.3 2004/01/13 14:31:26 keil Exp $ * * code to decode ITU Q.931 call control messages * * Author Jan den Ouden * * Changelog: * * Pauline Middelink general improvements * Beat Doebeli cause texts, display information element * Karsten Keil cause texts, display in...
google
android
arcofi
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/arcofi.c
3,628
utf_8
219abdd2db14e44153e42b6852cbe8cc
/* $Id: arcofi.c,v 1.14.2.3 2004/01/13 14:31:24 keil Exp $ * * Ansteuerung ARCOFI 2165 * * Author Karsten Keil * */ #include <linux/sched.h> #include "hisax.h" #include "isdnl1.h" #include "isac.h" #include "arcofi.h" #define ARCOFI_TIMER_VALUE 20 static void add_arcofi_timer(struct IsdnCardState *cs) { if...
google
android
elsa
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/elsa.c
34,443
utf_8
5f52de0916fe308615820a59e4b4b5be
/* $Id: elsa.c,v 2.32.2.4 2004/01/24 20:47:21 keil Exp $ * * low level stuff for Elsa isdn cards * * Author Karsten Keil * for ELSA PCMCIA support * */ #include <linux/init.h> #include <linux/slab.h> #include "hisax.h" #include "arcofi.h" #include "isac.h" #include "ipac.h" #include "hscx.h" #...
google
android
hfc_2bs0
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfc_2bs0.c
15,511
utf_8
6b9ea9c0c1e10d8d9d239e1c3278ca1d
/* $Id: hfc_2bs0.c,v 1.20.2.6 2004/02/11 13:21:33 keil Exp $ * * specific routines for CCD's HFC 2BS0 * * Author Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "hfc_2bs0.h" #include "isac.h" #include "isdnl1.h" #include <linux/interrupt.h> #include <linux/slab.h> static inline int Wai...
google
android
amd7930_fn
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/amd7930_fn.c
20,812
utf_8
38a56b22e37d840e888ccda5c58ea644
/* gerdes_amd7930.c,v 0.99 2001/10/02 * * gerdes_amd7930.c Amd 79C30A and 79C32A specific routines * (based on HiSax driver by Karsten Keil) * * * * Notes: * Version 0.99 is the first release of this driver and there are * certainly a few bugs. * * Please don't report any malfunction...
google
android
hisax_fcpcipnp
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hisax_fcpcipnp.c
25,456
utf_8
01886e839d2e863a8a41772f436d4f40
/* * Driver for AVM Fritz!PCI, Fritz!PCI v2, Fritz!PnP ISDN cards * * Author Kai Germaschewski * * Thanks to Wizard Computersysteme GmbH, Bremervoerde and * SoHaNet Technology GmbH, Berlin * for supporting the development of this driver */ /* TODO: * * o POWER PC * o clean up debugging * o t...
google
android
avm_a1
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/avm_a1.c
8,281
utf_8
a5f4ad8e7740fb816aac8412630f49e7
/* $Id: avm_a1.c,v 2.15.2.4 2004/01/13 21:46:03 keil Exp $ * * low level stuff for AVM A1 (Fritz) isdn cards * * Author Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" static const char *avm_revision = "$Revision: 2.15.2.4 $"; #define AVM...
google
android
hfcscard
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfcscard.c
8,072
utf_8
2430e8e0f3650bd0764b882e27f294d7
/* $Id: hfcscard.c,v 1.10.2.4 2004/01/14 16:04:48 keil Exp $ * * low level stuff for hfcs based cards (Teles3c, ACER P10) * * Author Karsten Keil * */ #include <linux/init.h> #include <linux/isapnp.h> #include "hisax.h" #include "hfc_2bds0.h" #include "isdnl1.h" static const char *hfcs_revision = "$Revision...
google
android
avma1_cs
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/avma1_cs.c
3,884
utf_8
fb6b96974129238c1693512fabe37e8d
/* * PCMCIA client driver for AVM A1 / Fritz!PCMCIA * * Author Carsten Paeth * */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/ptrace.h> #include <linux/slab.h> #include <linux/string.h> #include <asm/io.h> #include <pcmcia/cistpl.h> #include <pcmcia/ds.h> #incl...
google
android
tei
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/tei.c
11,325
utf_8
29f8bba2a33d1bb1afe25318deeb073f
/* $Id: tei.c,v 2.20.2.3 2004/01/13 14:31:26 keil Exp $ * * Author Karsten Keil * based on the teles driver from Jan den Ouden * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * Thanks to Jan den Ouden * Fritz Elfert * */ #include "hisax.h" #i...
google
android
saphir
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/saphir.c
7,488
utf_8
fa28b837ae28b2b17eb4b448378efd21
/* $Id: saphir.c,v 1.10.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for HST Saphir 1 * * Author Karsten Keil * * Thanks to HST High Soft Tech GmbH * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" static char *saphir_rev = "$Revision: 1.1...
google
android
hfc4s8s_l1
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfc4s8s_l1.c
39,908
utf_8
213389caa323f20e226095d13f6fe392
/*************************************************************************/ /* $Id: hfc4s8s_l1.c,v 1.10 2005/02/09 16:31:09 martinb1 Exp $ */ /* HFC-4S/8S low layer interface for Cologne Chip HFC-4S/8S isdn chips */ /* The low layer (L1) is implemented as a loadable module for usage with */ /* the HiSax isd...
google
android
hfc_pci
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfc_pci.c
54,487
utf_8
966c3f26d1d2934c4431bc84c05fefc1
/* $Id: hfc_pci.c,v 1.48.2.4 2004/02/11 13:21:33 keil Exp $ * * low level driver for CCD's hfc-pci based cards * * Author Werner Cornelius * based on existing driver for CCD hfc ISA cards * * For changes and modifications please read * Documentation/isdn/HiSax.cert * */ #include <linux/init...
google
android
teles3
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/teles3.c
13,576
utf_8
0002602be2847dd628256c28ab965429
/* $Id: teles3.c,v 2.19.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for Teles 16.3 & PNP isdn cards * * Author Karsten Keil * * Thanks to Jan den Ouden * Fritz Elfert * Beat Doebeli * */ #include <linux/init.h> #include <linux/isapnp.h> #include "hisax.h" #include...
google
android
elsa_cs
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/elsa_cs.c
5,929
utf_8
0ed4323a3db400db15b9323dcd3411eb
/*====================================================================== An elsa_cs PCMCIA client driver This driver is for the Elsa PCM ISDN Cards, i.e. the MicroLink The contents of this file are subject to the Mozilla Public ======================================================================*/ #include <l...
google
android
niccy
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/niccy.c
10,631
utf_8
4487a76269c9e571ba95d72445dda9cb
/* $Id: niccy.c,v 1.21.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for Dr. Neuhaus NICCY PnP and NICCY PCI and * compatible (SAGEM cybermodem) * * Author Karsten Keil * * Thanks to Dr. Neuhaus and SAGEM for information * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include ...
google
android
teles_cs
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/teles_cs.c
4,796
utf_8
e3fbde41f03f6a4554943930b3b3113d
/* $Id: teles_cs.c,v 1.1.2.2 2004/01/25 15:07:06 keil Exp $ */ /*====================================================================== A teles S0 PCMCIA client driver ======================================================================*/ #include <linux/kernel.h> #include <linux/module.h> #include <linux/init.h>...
google
android
teles0
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/teles0.c
9,216
utf_8
39b668b595b026bac8aa8e362dc4fc7f
/* $Id: teles0.c,v 2.15.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for Teles Memory IO isdn cards * * Author Karsten Keil * based on the teles driver from Jan den Ouden * * Thanks to Jan den Ouden * Fritz Elfert * Beat Doebeli * */ #include <linux/i...
google
android
bkm_a4t
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/bkm_a4t.c
9,079
utf_8
9bd9dbb4076f111ea763a7d55ebd0cd6
/* $Id: bkm_a4t.c,v 1.22.2.4 2004/01/14 16:04:48 keil Exp $ * * low level stuff for T-Berkom A4T * * Author Roland Klabunde * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "jade.h" #include "isdnl1.h" #include <linux/pci.h> #include "bkm_ax.h" static const char *...
google
android
s0box
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/s0box.c
7,121
utf_8
5cd813e46885d40247f79508a006478c
/* $Id: s0box.c,v 2.6.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for Creatix S0BOX * * Author Enrik Berkhan * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" static const char *s0box_revision = "$Revision: 2.6.2.4 $"; static inline void write...
google
android
hscx
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hscx.c
7,482
utf_8
051b343ba82bbce6cfed098d0753399e
/* $Id: hscx.c,v 1.24.2.4 2004/01/24 20:47:23 keil Exp $ * * HSCX specific routines * * Author Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "hscx.h" #include "isac.h" #include "isdnl1.h" #include <linux/interrupt.h> #include <linux/slab.h> static char *HSCXVer[] = {"A1", "?1", "A2",...
google
android
w6692
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/w6692.c
29,406
utf_8
af0ebca145d68d9aaf2d9a9b369f91ed
/* $Id: w6692.c,v 1.18.2.4 2004/02/11 13:21:34 keil Exp $ * * Winbond W6692 specific routines * * Author Petr Novak * */ #include <linux/init.h> #include "hisax.h" #include "w6692.h" #include "isdnl1.h" #include <linux/interrupt.h> #include <linux/pci.h> #include <linux/slab.h> /* table entry in the PCI dev...
google
android
avm_a1p
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/avm_a1p.c
7,129
utf_8
9f45061d115059de84445bdcce152390
/* $Id: avm_a1p.c,v 2.9.2.5 2004/01/24 20:47:19 keil Exp $ * * low level stuff for the following AVM cards: * A1 PCMCIA * FRITZ!Card PCMCIA * FRITZ!Card PCMCIA 2.0 * * Author Carsten Paeth * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" /* register ...
google
android
lmgr
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/lmgr.c
1,001
utf_8
0eb57c597e0caee614e2d00c8b7d4821
/* $Id: lmgr.c,v 1.7.6.2 2001/09/23 22:24:50 kai Exp $ * * Layermanagement module * * Author Karsten Keil * */ #include "hisax.h" static void error_handling_dchan(struct PStack *st, int Error) { switch (Error) { case 'C': case 'D': case 'G': case 'H': st->l2.l2tei(st, MDL_ERROR | REQUEST, NULL); br...
google
android
isar
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/isar.c
51,631
utf_8
4751fb10c7e10d41699a10ff018803cd
/* $Id: isar.c,v 1.22.2.6 2004/02/11 13:21:34 keil Exp $ * * isar.c ISAR (Siemens PSB 7110) specific routines * * */ #include <linux/init.h> #include "hisax.h" #include "isar.h" #include "isdnl1.h" #include <linux/interrupt.h> #include <linux/slab.h> #define DBG_LOADFIRM 0 #define DUMP_MBOXFRAME 2 #define DLE 0x...
google
android
ix1_micro
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/ix1_micro.c
8,336
utf_8
98c3695eb363c9aac85369e42f44eb9e
/* $Id: ix1_micro.c,v 2.12.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for ITK ix1-micro Rev.2 isdn cards * derived from the original file teles3.c from Karsten Keil * * Author Klaus-Peter Nischke * * Klaus-Peter Nischke * Deusener Str. 287 * 44369 Dortmund * Germany */ #include <linux/init....
google
android
icc
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/icc.c
18,356
utf_8
e46c9b606fe4d3fbba707fceccc6a6f9
/* $Id: icc.c,v 1.8.2.3 2004/01/13 14:31:25 keil Exp $ * * ICC specific routines * * Author Matt Henderson & Guy Ellis * * 1999.6.25 Initial implementation of routines for Siemens ISDN * Communication Controller PEB 2070 based on the ISAC routines * written by Karsten Keil. * */ #include <linux/init.h> ...
google
android
l3dss1
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/l3dss1.c
78,840
utf_8
40d8c93313987cab68b6f7881037b4cd
/* $Id: l3dss1.c,v 2.32.2.3 2004/01/13 14:31:25 keil Exp $ * * EURO/DSS1 D-channel protocol * * German 1TR6 D-channel protocol * * Author Karsten Keil * based on the teles driver from Jan den Ouden * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * Thanks to...
google
android
nj_s
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/nj_s.c
8,283
utf_8
c9c43c57c1c6b79d92b28a5866688b54
/* $Id: nj_s.c,v 2.13.2.4 2004/01/16 01:53:48 keil Exp $ * * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "isdnl1.h" #include <linux/pci.h> #include <linux/interrupt.h> #include <linux/ppp_defs.h> #include "netjet.h" static const char *NETjet_S_revision = "$Revision: 2.13.2.4 $"; static u...
google
android
netjet
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/netjet.c
26,112
utf_8
c34709324b642a9ead6e17275a89e714
/* $Id: netjet.c,v 1.29.2.4 2004/02/11 13:21:34 keil Exp $ * * low level stuff for Traverse Technologie NETJet ISDN cards * * Author Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" #include <linux/interrupt.h> #include <linux/ppp_defs.h> #...
google
android
isdnl1
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/isdnl1.c
21,026
utf_8
530c56a3c11779e5387c38627fcc4fb2
/* $Id: isdnl1.c,v 2.46.2.5 2004/02/11 13:21:34 keil Exp $ * * common low level stuff for Siemens Chipsetbased isdn cards * * Author Karsten Keil * based on the teles driver from Jan den Ouden * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * Thanks to Jan...
google
android
l3ni1
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/l3ni1.c
77,100
utf_8
e4607da4096df955a9187a5fb8b0dc80
/* $Id: l3ni1.c,v 2.8.2.3 2004/01/13 14:31:25 keil Exp $ * * NI1 D-channel protocol * * Author Matt Henderson & Guy Ellis * * 2000.6.6 Initial implementation of routines for US NI1 * Layer 3 protocol based on the EURO/DSS1 D-channel protocol * driver written by Karsten Keil et al. * NI-1 Hall of Fame - T...
google
android
hfc_2bds0
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/hfc_2bds0.c
27,891
utf_8
d8be5e45a56d813ed31e2abb9d8ef267
/* $Id: hfc_2bds0.c,v 1.18.2.6 2004/02/11 13:21:33 keil Exp $ * * specific routines for CCD's HFC 2BDS0 * * Author Karsten Keil * */ #include <linux/init.h> #include <linux/sched.h> #include <linux/slab.h> #include "hisax.h" #include "hfc_2bds0.h" #include "isdnl1.h" #include <linux/interrupt.h> /* #defin...
google
android
isac
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/isac.c
18,434
utf_8
4bade5be652dbe65c54445bfcfec20cb
/* $Id: isac.c,v 1.31.2.3 2004/01/13 14:31:25 keil Exp $ * * ISAC specific routines * * Author Karsten Keil * * For changes and modifications please read * Documentation/isdn/HiSax.cert * */ #include "hisax.h" #include "isac.h" #include "arcofi.h" #include "isdnl1.h" #include <linux/interrupt.h> #include...
google
android
isdnl3
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/isdnl3.c
13,050
utf_8
297a666b35ecfdc432acaddd7cfdceb1
/* $Id: isdnl3.c,v 2.22.2.3 2004/01/13 14:31:25 keil Exp $ * * Author Karsten Keil * based on the teles driver from Jan den Ouden * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * Thanks to Jan den Ouden * Fritz Elfert * */ #include <linux/in...
google
android
enternow_pci
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/enternow_pci.c
11,565
iso_8859_13
1d770b3cd7ce5f9abaa4c6eb053bf01b
/* enternow_pci.c,v 0.99 2001/10/02 * * enternow_pci.c Card-specific routines for * Formula-n enter:now ISDN PCI ab * Gerdes AG Power ISDN PCI * Woerltronic SA 16 PCI * (based on HiSax driver by Karsten Keil) * * * Notes:...
google
android
st5481_usb
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/st5481_usb.c
15,327
utf_8
d34bb2fe0aaac4a418c8fe5d2e28412a
/* * Driver for ST5481 USB ISDN modem * * Author Frode Isaksen * */ #include <linux/init.h> #include <linux/usb.h> #include <linux/slab.h> #include "st5481.h" static int st5481_isoc_flatten(struct urb *urb); /* ====================================================================== * control pipe */ /* * S...
google
android
isurf
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/isurf.c
7,914
utf_8
4f49497a4784e707afd9723a2f4061c4
/* $Id: isurf.c,v 1.12.2.4 2004/01/13 21:46:03 keil Exp $ * * low level stuff for Siemens I-Surf/I-Talk cards * * Author Karsten Keil * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "isar.h" #include "isdnl1.h" #include <linux/isapnp.h> static const char *ISurf_revision = "$Revisi...
google
android
elsa_ser
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/elsa_ser.c
17,110
utf_8
c556894128cb5e93ed0da520352656b2
/* $Id: elsa_ser.c,v 2.14.2.3 2004/02/11 13:21:33 keil Exp $ * * stuff for the serial modem on ELSA cards * #define BASE_BAUD (1843200 / 16) //#define SERIAL_DEBUG_OPEN 1 //#define SERIAL_DEBUG_INTR 1 //#define SERIAL_DEBUG_FLOW 1 #undef SERIAL_DEBUG_OPEN #undef SERIAL_DEBUG_INTR #undef SERIAL_DEBUG_FLOW #undef SERI...
google
android
diva
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/diva.c
34,423
utf_8
b5a9e8ccf93f7ad1245ea3045db86286
/* $Id: diva.c,v 1.33.2.6 2004/02/11 13:21:33 keil Exp $ * * low level stuff for Eicon.Diehl Diva Family ISDN cards * * Author Karsten Keil * * For changes and modifications please read * Documentation/isdn/HiSax.cert * * Thanks to Eicon Technology for documents and information * */ #include <linux/ini...
google
android
mic
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hisax/mic.c
5,816
utf_8
0df2226bf791cb5549d00e798942de51
/* $Id: mic.c,v 1.12.2.4 2004/01/13 23:48:39 keil Exp $ * * low level stuff for mic cards * * Author Stephan von Krawczynski * */ #include <linux/init.h> #include "hisax.h" #include "isac.h" #include "hscx.h" #include "isdnl1.h" static const char *mic_revision = "$Revision: 1.12.2.4 $"; #define byteout(addr...
google
android
common
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/common.c
26,806
utf_8
ef117739223c23acfea09184fced9ae2
/* * Stuff used by all variants of the driver * #define DRIVER_DESC "Driver for Gigaset 307x" #ifdef CONFIG_GIGASET_DEBUG #define DRIVER_DESC_DEBUG " (debug build)" #else #define DRIVER_DESC_DEBUG "" #endif /* Module parameters */ int gigaset_debuglevel; */ void gigaset_dbg_buffer(enum debuglevel level, const unsign...
google
android
isocdata
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/isocdata.c
36,535
utf_8
ddb7917c8e75c0ce8e294319977ac6c9
/* * Common data handling layer for bas_gigaset * * ===================================================================== */ #include "gigaset.h" #include <linux/crc-ccitt.h> #include <linux/bitrev.h> /* access methods for isowbuf_t */ /* ============================ */ /* initialize buffer structure */ void gigas...
google
android
i4l
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/i4l.c
18,569
utf_8
3493a97468d9315781496ce3b901af64
/* * Stuff used by all variants of the driver * * ===================================================================== */ #include "gigaset.h" #include <linux/isdnif.h> #include <linux/export.h> #define SBUFSIZE 4096 /* sk_buff payload size */ #define TRANSBUFSIZE 768 /* bytes per skb for transparent receive */ #d...
google
android
ev-layer
.c
platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/ev-layer.c
49,647
utf_8
713f22f0108faf3179aeeceaa47f109e
/* * Stuff used by all variants of the driver * * ===================================================================== */ #include <linux/export.h> #include "gigaset.h" /* ========================================================== */ /* bit masks for pending commands */ #define PC_DIAL 0x001 #define PC_HUP 0x002...