diff options
author | Dave Airlie <airlied@redhat.com> | 2016-11-15 18:39:21 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-11-15 18:39:21 -0500 |
commit | 1a3865d64a0d8151c7fe23f4b57a587615ccc5bb (patch) | |
tree | c3ad147281f48e85c59d23559485f0e9408ecea7 /include/video | |
parent | d8c1abd968f1c880ad8ce4ecf7df55489f8c69a1 (diff) | |
parent | 85e8f8d175caa6a39f4c4e11dd4d0ab038f43324 (diff) |
Merge branch 'drm/next/du' of git://linuxtv.org/pinchartl/media into drm-next
rcar-du -next branch.
* 'drm/next/du' of git://linuxtv.org/pinchartl/media:
drm: rcar-du: Fix LVDS start sequence on Gen3
drm: rcar-du: Fix H/V sync signal polarity configuration
drm: rcar-du: Fix display timing controller parameter
drm: rcar-du: Fix dot clock routing configuration
drm: rcar-du: Add R8A7796 support
drm: rcar-du: Add R8A7792 support
drm: rcar-du: Simplify and fix probe error handling
drm: rcar-du: Fix crash in encoder failure error path
drm: rcar-du: Remove memory allocation error message
drm: rcar-du: Remove test for impossible error condition
drm: rcar-du: Bring HDMI encoder comments in line with the driver
drm: rcar-du: Constify node argument to rcar_du_lvds_connector_init()
video: of: Constify node argument to display timing functions
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/of_display_timing.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/video/of_display_timing.h b/include/video/of_display_timing.h index ea755b5616d8..956455fc9f9a 100644 --- a/include/video/of_display_timing.h +++ b/include/video/of_display_timing.h | |||
@@ -16,21 +16,22 @@ struct display_timings; | |||
16 | #define OF_USE_NATIVE_MODE -1 | 16 | #define OF_USE_NATIVE_MODE -1 |
17 | 17 | ||
18 | #ifdef CONFIG_OF | 18 | #ifdef CONFIG_OF |
19 | int of_get_display_timing(struct device_node *np, const char *name, | 19 | int of_get_display_timing(const struct device_node *np, const char *name, |
20 | struct display_timing *dt); | 20 | struct display_timing *dt); |
21 | struct display_timings *of_get_display_timings(struct device_node *np); | 21 | struct display_timings *of_get_display_timings(const struct device_node *np); |
22 | int of_display_timings_exist(struct device_node *np); | 22 | int of_display_timings_exist(const struct device_node *np); |
23 | #else | 23 | #else |
24 | static inline int of_get_display_timing(struct device_node *np, const char *name, | 24 | static inline int of_get_display_timing(const struct device_node *np, |
25 | struct display_timing *dt) | 25 | const char *name, struct display_timing *dt) |
26 | { | 26 | { |
27 | return -ENOSYS; | 27 | return -ENOSYS; |
28 | } | 28 | } |
29 | static inline struct display_timings *of_get_display_timings(struct device_node *np) | 29 | static inline struct display_timings * |
30 | of_get_display_timings(const struct device_node *np) | ||
30 | { | 31 | { |
31 | return NULL; | 32 | return NULL; |
32 | } | 33 | } |
33 | static inline int of_display_timings_exist(struct device_node *np) | 34 | static inline int of_display_timings_exist(const struct device_node *np) |
34 | { | 35 | { |
35 | return -ENOSYS; | 36 | return -ENOSYS; |
36 | } | 37 | } |