Remove spurious return, remove copy-and-pasted semi-colons, add static inline.

Signed-off-by: Hans Verkuil <hans.verk...@cisco.com>
---

Third time in quick succession that these stubs are messed up. Please do a build
without CONFIG_MEDIA_CONTROLLER before merging!

---
diff --git a/include/media/v4l2-mc.h b/include/media/v4l2-mc.h
index 96cfca9..98a938a 100644
--- a/include/media/v4l2-mc.h
+++ b/include/media/v4l2-mc.h
@@ -221,7 +221,6 @@ static inline int v4l_enable_media_source(struct 
video_device *vdev)

 static inline void v4l_disable_media_source(struct video_device *vdev)
 {
-       return;
 }

 static inline int v4l_vb2q_enable_media_source(struct vb2_queue *q)
@@ -229,13 +228,13 @@ static inline int v4l_vb2q_enable_media_source(struct 
vb2_queue *q)
        return 0;
 }

-int v4l2_pipeline_pm_use(struct media_entity *entity, int use);
+static inline int v4l2_pipeline_pm_use(struct media_entity *entity, int use)
 {
        return 0;
 }

-int v4l2_pipeline_link_notify(struct media_link *link, u32 flags,
-                             unsigned int notification);
+static inline int v4l2_pipeline_link_notify(struct media_link *link, u32 flags,
+                                           unsigned int notification)
 {
        return 0;
 }
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to