summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/intel_overlay.c
blob: 0cc94a1b1f48242bc5e609b412d09b8aa3e8aa45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "drmP.h"
#include "drm.h"
#include "i915_drm.h"
#include "i915_drv.h"
#include "i915_reg.h"
#include "intel_drv.h"

int intel_overlay_switch_off(struct intel_overlay *overlay)
{
	printf("%s stub\n", __func__);
	return EINVAL;
}

void intel_setup_overlay(struct drm_device *dev)
{
	printf("%s stub\n", __func__);
}