aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/media/rcar-fcp.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>2016-08-17 09:57:37 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-09-09 11:29:57 -0300
commitfd44aa9a254b18176ec3792a18e7de6977030ca8 (patch)
tree28358bebedc7e34df65cc4da9683a3a9fc9fa5e1 /include/media/rcar-fcp.h
parent[media] v4l: rcar-fcp: Keep the coding style consistent (diff)
downloadwireguard-linux-fd44aa9a254b18176ec3792a18e7de6977030ca8.tar.xz
wireguard-linux-fd44aa9a254b18176ec3792a18e7de6977030ca8.zip
[media] v4l: rcar-fcp: Don't force users to check for disabled FCP support
The rcar_fcp_enable() function immediately returns successfully when the FCP device pointer is NULL to avoid forcing the users to check the FCP device manually before every call. However, the stub version of the function used when the FCP driver is disabled returns -ENOSYS unconditionally, resulting in a different API contract for the two versions of the function. As a user that requires FCP support will fail at probe time when calling rcar_fcp_get() if the FCP driver is disabled, the stub version of the rcar_fcp_enable() function will only be called with a NULL FCP device. We can thus return 0 unconditionally to align the behaviour with the normal version of the function. Reported-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/media/rcar-fcp.h')
-rw-r--r--include/media/rcar-fcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/rcar-fcp.h b/include/media/rcar-fcp.h
index 4c7fc77eaf29..8723f05c6321 100644
--- a/include/media/rcar-fcp.h
+++ b/include/media/rcar-fcp.h
@@ -29,7 +29,7 @@ static inline struct rcar_fcp_device *rcar_fcp_get(const struct device_node *np)
static inline void rcar_fcp_put(struct rcar_fcp_device *fcp) { }
static inline int rcar_fcp_enable(struct rcar_fcp_device *fcp)
{
- return -ENOSYS;
+ return 0;
}
static inline void rcar_fcp_disable(struct rcar_fcp_device *fcp) { }
#endif