• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/telephony/

Lines Matching defs:ixj

2  *    ixj.c
45 * $Log: ixj.c,v $
68 * Added ixj-ver.h to allow easy configuration management of driver
69 * Added display of version number in /prox/ixj
124 * Reduced size of ixj structure for smaller driver footprint.
220 * Added additional information to /proc/ixj
251 #include "ixj-ver.h"
279 #include "ixj.h"
318 static IXJ *ixj[IXJMAX];
319 #define get_ixj(b) ixj[(b)]
329 if(ixj[cnt] == NULL || !ixj[cnt]->DSPbase)
334 ixj[cnt] = j;
367 static IXJ ixj[IXJMAX];
368 #define get_ixj(b) (&ixj[(b)])
378 if(!ixj[cnt].DSPbase)
379 return &ixj[cnt];
3915 printk("Read buffer allocation for ixj board %d failed!\n", j->board);
4495 printk("Write buffer allocation for ixj board %d failed!\n", j->board);
6801 if (!request_region(j->XILINXbase, 4, "ixj control")) {
6802 printk(KERN_INFO "ixj: can't get I/O address 0x%x\n", j->XILINXbase);
6810 if (!request_region(j->XILINXbase, 8, "ixj control")) {
6811 printk(KERN_INFO "ixj: can't get I/O address 0x%x\n", j->XILINXbase);
6817 request_region(j->XILINXbase, 4, "ixj control");
6834 if (!request_region(j->XILINXbase, 8, "ixj control")) {
6835 printk(KERN_INFO "ixj: can't get I/O address 0x%x\n", j->XILINXbase);
6841 if (!request_region(j->XILINXbase, 4, "ixj control")) {
6842 printk(KERN_INFO "ixj: can't get I/O address 0x%x\n", j->XILINXbase);
7460 ixj[cnt] = NULL;
7465 printk(KERN_INFO "IXJ: Removing /proc/ixj\n");
7466 remove_proc_entry ("ixj", NULL);
7573 if (!request_region(port, 16, "ixj DSP")) {
7574 printk(KERN_INFO "ixj: can't get I/O address 0x%lx\n", port);
7580 printk(KERN_INFO "ixj: out of memory\n");
7644 printk(KERN_INFO "ixj: found Internet PhoneJACK at 0x%x\n", j->DSPbase);
7647 printk(KERN_INFO "ixj: found Internet LineJACK at 0x%x\n", j->DSPbase);
7650 printk(KERN_INFO "ixj: found Internet PhoneJACK Lite at 0x%x\n", j->DSPbase);
7715 printk(KERN_INFO "ixj: found Internet PhoneJACK PCI at 0x%x\n", j->DSPbase);
7739 printk(KERN_INFO "ixj driver initialized.\n");
7740 create_proc_read_entry ("ixj", 0, NULL, ixj_read_proc, NULL);