Lines Matching refs:ep_mask
2490 int cx231xx_start_stream(struct cx231xx *dev, u32 ep_mask) in cx231xx_start_stream() argument
2496 dev_dbg(dev->dev, "%s: ep_mask = %x\n", __func__, ep_mask); in cx231xx_start_stream()
2503 tmp |= ep_mask; in cx231xx_start_stream()
2515 int cx231xx_stop_stream(struct cx231xx *dev, u32 ep_mask) in cx231xx_stop_stream() argument
2521 dev_dbg(dev->dev, "%s: ep_mask = %x\n", __func__, ep_mask); in cx231xx_stop_stream()
2528 tmp &= (~ep_mask); in cx231xx_stop_stream()
2629 u32 ep_mask = -1; in cx231xx_capture_start() local
2638 ep_mask = ENABLE_EP4; /* ep4 [00:1000] */ in cx231xx_capture_start()
2641 ep_mask = ENABLE_EP3; /* ep3 [00:0100] */ in cx231xx_capture_start()
2644 ep_mask = ENABLE_EP5; /* ep5 [01:0000] */ in cx231xx_capture_start()
2647 ep_mask = ENABLE_EP6; /* ep6 [10:0000] */ in cx231xx_capture_start()
2651 ep_mask = ENABLE_EP1; /* ep1 [00:0001] */ in cx231xx_capture_start()
2654 ep_mask = ENABLE_EP2; /* ep2 [00:0010] */ in cx231xx_capture_start()
2666 if (ep_mask > 0) in cx231xx_capture_start()
2667 rc = cx231xx_start_stream(dev, ep_mask); in cx231xx_capture_start()
2670 if (ep_mask > 0) in cx231xx_capture_start()
2671 rc = cx231xx_stop_stream(dev, ep_mask); in cx231xx_capture_start()