GNU Linux-libre 4.14.324-gnu1
[releases.git] / include / video / of_display_timing.h
1 /*
2  * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
3  *
4  * display timings of helpers
5  *
6  * This file is released under the GPLv2
7  */
8
9 #ifndef __LINUX_OF_DISPLAY_TIMING_H
10 #define __LINUX_OF_DISPLAY_TIMING_H
11
12 #include <linux/errno.h>
13
14 struct device_node;
15 struct display_timing;
16 struct display_timings;
17
18 #define OF_USE_NATIVE_MODE -1
19
20 #ifdef CONFIG_OF
21 int of_get_display_timing(const struct device_node *np, const char *name,
22                 struct display_timing *dt);
23 struct display_timings *of_get_display_timings(const struct device_node *np);
24 int of_display_timings_exist(const struct device_node *np);
25 #else
26 static inline int of_get_display_timing(const struct device_node *np,
27                 const char *name, struct display_timing *dt)
28 {
29         return -ENOSYS;
30 }
31 static inline struct display_timings *
32 of_get_display_timings(const struct device_node *np)
33 {
34         return NULL;
35 }
36 static inline int of_display_timings_exist(const struct device_node *np)
37 {
38         return -ENOSYS;
39 }
40 #endif
41
42 #endif