]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/video/of_display_timing.h
video: add of helper for display timings/videomode
[mirror_ubuntu-bionic-kernel.git] / include / video / of_display_timing.h
CommitLineData
cc3f414c
ST
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
12struct device_node;
13struct display_timings;
14
15#define OF_USE_NATIVE_MODE -1
16
17struct display_timings *of_get_display_timings(struct device_node *np);
18int of_display_timings_exist(struct device_node *np);
19
20#endif