struct media_link *link;
        int ret;
 
-       if (pipe->streaming_count) {
-               pipe->streaming_count++;
+       if (pipe->start_count) {
+               pipe->start_count++;
                return 0;
        }
 
                }
        }
 
-       pipe->streaming_count++;
+       pipe->start_count++;
 
        return 0;
 
        if (WARN_ON(!pipe))
                return;
 
-       if (--pipe->streaming_count)
+       if (--pipe->start_count)
                return;
 
        media_graph_walk_start(graph, entity);
 
         * If the other capture is streaming, isp and sensor nodes shouldn't
         * be disabled, skip them.
         */
-       if (rkisp1->pipe.streaming_count < 2)
+       if (rkisp1->pipe.start_count < 2)
                v4l2_subdev_call(&rkisp1->isp.sd, video, s_stream, false);
 
        v4l2_subdev_call(&rkisp1->resizer_devs[cap->id].sd, video, s_stream,
         * If the other capture is streaming, isp and sensor nodes are already
         * enabled, skip them.
         */
-       if (rkisp1->pipe.streaming_count > 1)
+       if (rkisp1->pipe.start_count > 1)
                return 0;
 
        ret = v4l2_subdev_call(&rkisp1->isp.sd, video, s_stream, true);
 
 /**
  * struct media_pipeline - Media pipeline related information
  *
- * @streaming_count:   Streaming start count - streaming stop count
+ * @start_count:       Media pipeline start - stop count
  * @graph:             Media graph walk during pipeline start / stop
  */
 struct media_pipeline {
-       int streaming_count;
+       int start_count;
        struct media_graph graph;
 };