mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-07 16:58:04 -04:00
18 lines
367 B
C
18 lines
367 B
C
/*
|
|
* Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>
|
|
*
|
|
* videomode of-helpers
|
|
*
|
|
* This file is released under the GPLv2
|
|
*/
|
|
|
|
#ifndef __LINUX_OF_VIDEOMODE_H
|
|
#define __LINUX_OF_VIDEOMODE_H
|
|
|
|
struct device_node;
|
|
struct videomode;
|
|
|
|
int of_get_videomode(struct device_node *np, struct videomode *vm,
|
|
int index);
|
|
|
|
#endif /* __LINUX_OF_VIDEOMODE_H */
|