Searched refs:tpam_card (Results 1 – 5 of 5) sorted by relevance
/linux-2.4.37.9/drivers/isdn/tpam/ |
D | tpam.h | 63 struct tpam_card *card; /* channel's card */ 73 typedef struct tpam_card { struct 74 struct tpam_card *next; /* next card in list */ argument 91 } tpam_card; typedef 160 tpam_card *card; /* card issuing the statcallb */ 166 extern tpam_card *tpam_findcard(int); 167 extern u32 tpam_findchannel(tpam_card *, u32); 170 extern void copy_to_pam_dword(tpam_card *, const void *, u32); 171 extern void copy_to_pam(tpam_card *, void *, const void *, u32); 172 extern u32 copy_from_pam_dword(tpam_card *, const void *); [all …]
|
D | tpam_commands.c | 25 static int tpam_command_ioctl_dspload(tpam_card *, u32); 26 static int tpam_command_ioctl_dspsave(tpam_card *, u32); 27 static int tpam_command_ioctl_dsprun(tpam_card *); 28 static int tpam_command_ioctl_loopmode(tpam_card *, u8); 29 static int tpam_command_dial(tpam_card *, u32, u8 *); 30 static int tpam_command_setl2(tpam_card *, u32, u8); 31 static int tpam_command_getl2(tpam_card *, u32); 32 static int tpam_command_acceptd(tpam_card *, u32); 33 static int tpam_command_acceptb(tpam_card *, u32); 34 static int tpam_command_hangup(tpam_card *, u32); [all …]
|
D | tpam_main.c | 26 static void __devexit tpam_unregister_card(tpam_card *); 32 static tpam_card *cards; /* = NULL; */ 51 tpam_card *tpam_findcard(int driverid) { in tpam_findcard() 52 tpam_card *p = cards; in tpam_findcard() 70 u32 tpam_findchannel(tpam_card *card, u32 ncoid) { in tpam_findchannel() 88 tpam_card *card, *c; in tpam_probe() 92 if (!(card = (tpam_card *)kmalloc(sizeof(tpam_card), GFP_KERNEL))) { in tpam_probe() 98 memset((char *)card, 0, sizeof(tpam_card)); in tpam_probe() 206 static void __devexit tpam_unregister_card(tpam_card *card) { in tpam_unregister_card() 225 tpam_card *card = pci_get_drvdata(pcidev); in tpam_remove() [all …]
|
D | tpam_memory.c | 26 void copy_to_pam_dword(tpam_card *card, const void *addr, u32 val) { in copy_to_pam_dword() 45 void copy_to_pam(tpam_card *card, void *to, const void *from, u32 n) { in copy_to_pam() 78 u32 copy_from_pam_dword(tpam_card *card, const void *addr) { in copy_from_pam_dword() 96 void copy_from_pam(tpam_card *card, void *to, const void *from, u32 n) { in copy_from_pam() 128 int copy_from_pam_to_user(tpam_card *card, void *to, const void *from, u32 n) { in copy_from_pam_to_user() 174 int copy_from_user_to_pam(tpam_card *card, void *to, const void *from, u32 n) { in copy_from_user_to_pam()
|
D | tpam_queues.c | 23 static int tpam_sendpacket(tpam_card *card, tpam_channel *channel); 31 void tpam_enqueue(tpam_card *card, struct sk_buff *skb) { in tpam_enqueue() 80 tpam_card *card = (tpam_card *)dev_id; in tpam_irq() 205 void tpam_recv_tq(tpam_card *card) { in tpam_recv_tq() 256 void tpam_send_tq(tpam_card *card) { in tpam_send_tq() 287 static int tpam_sendpacket(tpam_card *card, tpam_channel *channel) { in tpam_sendpacket()
|