xref: /openbmc/linux/include/video/of_videomode.h (revision ba61bb17)
1 /*
2  * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
3  *
4  * videomode of-helpers
5  *
6  * This file is released under the GPLv2
7  */
8 
9 #ifndef __LINUX_OF_VIDEOMODE_H
10 #define __LINUX_OF_VIDEOMODE_H
11 
12 struct device_node;
13 struct videomode;
14 
15 int of_get_videomode(struct device_node *np, struct videomode *vm,
16 		     int index);
17 
18 #endif /* __LINUX_OF_VIDEOMODE_H */
19