pid_filt          100 drivers/media/pci/cx23885/altera-ci.c 	struct netup_hw_pid_filter *pid_filt[2];
pid_filt          163 drivers/media/pci/cx23885/altera-ci.c 	if ((temp_int->pid_filt[filt_nr]) == NULL)
pid_filt          166 drivers/media/pci/cx23885/altera-ci.c 	if (temp_int->pid_filt[filt_nr]->demux == demux_dev)
pid_filt          457 drivers/media/pci/cx23885/altera-ci.c 	struct netup_hw_pid_filter *pid_filt = NULL;
pid_filt          462 drivers/media/pci/cx23885/altera-ci.c 		pid_filt = temp_int->internal->pid_filt[filt_nr - 1];
pid_filt          464 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->demux->start_feed = pid_filt->start_feed;
pid_filt          465 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->demux->stop_feed = pid_filt->stop_feed;
pid_filt          473 drivers/media/pci/cx23885/altera-ci.c 			kfree(pid_filt->internal);
pid_filt          476 drivers/media/pci/cx23885/altera-ci.c 		kfree(pid_filt);
pid_filt          514 drivers/media/pci/cx23885/altera-ci.c static void altera_pid_control(struct netup_hw_pid_filter *pid_filt,
pid_filt          517 drivers/media/pci/cx23885/altera-ci.c 	struct fpga_internal *inter = pid_filt->internal;
pid_filt          528 drivers/media/pci/cx23885/altera-ci.c 			((pid >> 11) & 0x03) | (pid_filt->nr << 2), 0);
pid_filt          542 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->nr, pid, pid, onoff ? "off" : "on");
pid_filt          545 drivers/media/pci/cx23885/altera-ci.c static void altera_toggle_fullts_streaming(struct netup_hw_pid_filter *pid_filt,
pid_filt          548 drivers/media/pci/cx23885/altera-ci.c 	struct fpga_internal *inter = pid_filt->internal;
pid_filt          552 drivers/media/pci/cx23885/altera-ci.c 	pid_dbg_print("%s: pid_filt->nr[%d]  now %s\n", __func__, pid_filt->nr,
pid_filt          566 drivers/media/pci/cx23885/altera-ci.c 				((i >> 8) & 0x03) | (pid_filt->nr << 2), 0);
pid_filt          580 drivers/media/pci/cx23885/altera-ci.c 	struct netup_hw_pid_filter *pid_filt = inter->pid_filt[filt_nr - 1];
pid_filt          582 drivers/media/pci/cx23885/altera-ci.c 	altera_pid_control(pid_filt, feed->pid, onoff ? 0 : 1);
pid_filt          585 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->start_feed(feed);
pid_filt          587 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->stop_feed(feed);
pid_filt          590 drivers/media/pci/cx23885/altera-ci.c 		altera_toggle_fullts_streaming(pid_filt, filt_nr,
pid_filt          632 drivers/media/pci/cx23885/altera-ci.c 	struct netup_hw_pid_filter *pid_filt = NULL;
pid_filt          637 drivers/media/pci/cx23885/altera-ci.c 	pid_filt = kzalloc(sizeof(struct netup_hw_pid_filter), GFP_KERNEL);
pid_filt          641 drivers/media/pci/cx23885/altera-ci.c 	if (!pid_filt) {
pid_filt          671 drivers/media/pci/cx23885/altera-ci.c 						pid_filt, hw_filt_nr - 1);
pid_filt          672 drivers/media/pci/cx23885/altera-ci.c 	inter->pid_filt[hw_filt_nr - 1] = pid_filt;
pid_filt          673 drivers/media/pci/cx23885/altera-ci.c 	pid_filt->demux = config->demux;
pid_filt          674 drivers/media/pci/cx23885/altera-ci.c 	pid_filt->internal = inter;
pid_filt          675 drivers/media/pci/cx23885/altera-ci.c 	pid_filt->nr = hw_filt_nr - 1;
pid_filt          677 drivers/media/pci/cx23885/altera-ci.c 	pid_filt->start_feed = config->demux->start_feed;
pid_filt          678 drivers/media/pci/cx23885/altera-ci.c 	pid_filt->stop_feed = config->demux->stop_feed;
pid_filt          681 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->demux->start_feed = altera_ci_start_feed_1;
pid_filt          682 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->demux->stop_feed = altera_ci_stop_feed_1;
pid_filt          684 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->demux->start_feed = altera_ci_start_feed_2;
pid_filt          685 drivers/media/pci/cx23885/altera-ci.c 		pid_filt->demux->stop_feed = altera_ci_stop_feed_2;
pid_filt          688 drivers/media/pci/cx23885/altera-ci.c 	altera_toggle_fullts_streaming(pid_filt, 0, 1);
pid_filt          695 drivers/media/pci/cx23885/altera-ci.c 	kfree(pid_filt);