https://github.com/torvalds/linux
Raw File
Tip revision: 959f58544b7f20c92d5eb43d1232c96c15c01bfb authored by Linus Torvalds on 27 October 2013, 23:12:03 UTC
Linux 3.12-rc7
Tip revision: 959f585
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

int of_get_display_timing(struct device_node *np, const char *name,
		struct display_timing *dt);
struct display_timings *of_get_display_timings(struct device_node *np);
int of_display_timings_exist(struct device_node *np);

#endif
back to top