Lines Matching refs:ndsp
1049 struct dsp *ndsp; in dspcreate() local
1055 ndsp = vmalloc(sizeof(struct dsp)); in dspcreate()
1056 if (!ndsp) { in dspcreate()
1060 memset(ndsp, 0, sizeof(struct dsp)); in dspcreate()
1065 INIT_WORK(&ndsp->workq, (void *)dsp_send_bh); in dspcreate()
1066 skb_queue_head_init(&ndsp->sendq); in dspcreate()
1067 ndsp->ch.send = dsp_function; in dspcreate()
1068 ndsp->ch.ctrl = dsp_ctrl; in dspcreate()
1069 ndsp->up = crq->ch; in dspcreate()
1070 crq->ch = &ndsp->ch; in dspcreate()
1073 ndsp->hdlc = 0; in dspcreate()
1076 ndsp->hdlc = 1; in dspcreate()
1082 sprintf(ndsp->name, "DSP_C%x(0x%p)", in dspcreate()
1083 ndsp->up->st->dev->id + 1, ndsp); in dspcreate()
1085 ndsp->features.hfc_id = -1; /* current PCM id */ in dspcreate()
1086 ndsp->features.pcm_id = -1; /* current PCM id */ in dspcreate()
1087 ndsp->pcm_slot_rx = -1; /* current CPM slot */ in dspcreate()
1088 ndsp->pcm_slot_tx = -1; in dspcreate()
1089 ndsp->pcm_bank_rx = -1; in dspcreate()
1090 ndsp->pcm_bank_tx = -1; in dspcreate()
1091 ndsp->hfc_conf = -1; /* current conference number */ in dspcreate()
1093 ndsp->tone.tl.function = (void *)dsp_tone_timeout; in dspcreate()
1094 ndsp->tone.tl.data = (long) ndsp; in dspcreate()
1095 init_timer(&ndsp->tone.tl); in dspcreate()
1099 ndsp->dtmf.treshold = dtmfthreshold*10000; in dspcreate()
1103 dsp_pipeline_init(&ndsp->pipeline); in dspcreate()
1104 list_add_tail(&ndsp->list, &dsp_ilist); in dspcreate()