Release 4.12 include/video/of_display_timing.h
/*
* Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
*
* display timings of helpers
*
* This file is released under the GPLv2
*/
#ifndef __LINUX_OF_DISPLAY_TIMING_H
#define __LINUX_OF_DISPLAY_TIMING_H
struct device_node;
struct display_timing;
struct display_timings;
#define OF_USE_NATIVE_MODE -1
#ifdef CONFIG_OF
int of_get_display_timing(const struct device_node *np, const char *name,
struct display_timing *dt);
struct display_timings *of_get_display_timings(const struct device_node *np);
int of_display_timings_exist(const struct device_node *np);
#else
static inline int of_get_display_timing(const struct device_node *np,
const char *name, struct display_timing *dt)
{
return -ENOSYS;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tomi Valkeinen | 26 | 96.30% | 1 | 50.00% |
Laurent Pinchart | 1 | 3.70% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
static inline struct display_timings *
of_get_display_timings(const struct device_node *np)
{
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tomi Valkeinen | 17 | 94.44% | 1 | 50.00% |
Laurent Pinchart | 1 | 5.56% | 1 | 50.00% |
Total | 18 | 100.00% | 2 | 100.00% |
static inline int of_display_timings_exist(const struct device_node *np)
{
return -ENOSYS;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tomi Valkeinen | 16 | 94.12% | 1 | 50.00% |
Laurent Pinchart | 1 | 5.88% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tomi Valkeinen | 85 | 63.91% | 2 | 40.00% |
Steffen Trumtrar | 39 | 29.32% | 1 | 20.00% |
Laurent Pinchart | 6 | 4.51% | 1 | 20.00% |
Fabio Estevam | 3 | 2.26% | 1 | 20.00% |
Total | 133 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.