2019-04-29 15:29:30 +03:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2019 Intel Corporation
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __INTEL_QUIRKS_H__
|
|
|
|
|
#define __INTEL_QUIRKS_H__
|
|
|
|
|
|
2022-08-29 16:18:21 +03:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
2019-04-29 15:29:30 +03:00
|
|
|
struct drm_i915_private;
|
|
|
|
|
|
2022-08-29 16:18:21 +03:00
|
|
|
void intel_init_quirks(struct drm_i915_private *i915);
|
|
|
|
|
bool intel_has_quirk(struct drm_i915_private *i915, unsigned long quirk);
|
2019-04-29 15:29:30 +03:00
|
|
|
|
|
|
|
|
#endif /* __INTEL_QUIRKS_H__ */
|