swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 030bbdbf4c833bc69f502eae58498bc5572db736 authored by Linus Torvalds on 10 May 2015, 22:12:29 UTC
Linux 4.1-rc3
Tip revision: 030bbdb
drm_of.h
#ifndef __DRM_OF_H__
#define __DRM_OF_H__

struct drm_device;
struct device_node;

#ifdef CONFIG_OF
extern uint32_t drm_of_find_possible_crtcs(struct drm_device *dev,
					   struct device_node *port);
#else
static inline uint32_t drm_of_find_possible_crtcs(struct drm_device *dev,
						  struct device_node *port)
{
	return 0;
}
#endif

#endif /* __DRM_OF_H__ */
back to top