Deleted Added
full compact
intel_hdmi.c (235783) intel_hdmi.c (254797)
1/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright �� 2006-2009 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,

--- 13 unchanged lines hidden (view full) ---

22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 * Jesse Barnes <jesse.barnes@intel.com>
27 */
28
29#include <sys/cdefs.h>
1/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright �� 2006-2009 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,

--- 13 unchanged lines hidden (view full) ---

22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 * Jesse Barnes <jesse.barnes@intel.com>
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/drm2/i915/intel_hdmi.c 235783 2012-05-22 11:07:44Z kib $");
30__FBSDID("$FreeBSD: head/sys/dev/drm2/i915/intel_hdmi.c 254797 2013-08-24 16:50:47Z dumbbell $");
31
32#include <dev/drm2/drmP.h>
33#include <dev/drm2/drm.h>
34#include <dev/drm2/drm_crtc.h>
35#include <dev/drm2/drm_edid.h>
36#include <dev/drm2/i915/i915_drm.h>
37#include <dev/drm2/i915/i915_drv.h>
38#include <dev/drm2/i915/intel_drv.h>

--- 274 unchanged lines hidden (view full) ---

313
314 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
315 return MODE_NO_DBLESCAN;
316
317 return MODE_OK;
318}
319
320static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
31
32#include <dev/drm2/drmP.h>
33#include <dev/drm2/drm.h>
34#include <dev/drm2/drm_crtc.h>
35#include <dev/drm2/drm_edid.h>
36#include <dev/drm2/i915/i915_drm.h>
37#include <dev/drm2/i915/i915_drv.h>
38#include <dev/drm2/i915/intel_drv.h>

--- 274 unchanged lines hidden (view full) ---

313
314 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
315 return MODE_NO_DBLESCAN;
316
317 return MODE_OK;
318}
319
320static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
321 struct drm_display_mode *mode,
321 const struct drm_display_mode *mode,
322 struct drm_display_mode *adjusted_mode)
323{
324 return true;
325}
326
327static enum drm_connector_status
328intel_hdmi_detect(struct drm_connector *connector, bool force)
329{

--- 247 unchanged lines hidden ---
322 struct drm_display_mode *adjusted_mode)
323{
324 return true;
325}
326
327static enum drm_connector_status
328intel_hdmi_detect(struct drm_connector *connector, bool force)
329{

--- 247 unchanged lines hidden ---