xref: /linux/include/video/of_videomode.h (revision 44f57d78)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
4  *
5  * videomode of-helpers
6  */
7 
8 #ifndef __LINUX_OF_VIDEOMODE_H
9 #define __LINUX_OF_VIDEOMODE_H
10 
11 struct device_node;
12 struct videomode;
13 
14 int of_get_videomode(struct device_node *np, struct videomode *vm,
15 		     int index);
16 
17 #endif /* __LINUX_OF_VIDEOMODE_H */
18