mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Replace multi-line SPDX license headers with single-line equivalents (// SPDX-License-Identifier: MIT or /* ... */ for headers), as preferred by current kernel coding style. Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Reviewed-by: Nitin Gote <nitin.r.gote@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Mikołaj Wasiak <mikolaj.wasiak@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250327232629.2939-1-andi.shyti@linux.intel.com
19 lines
420 B
C
19 lines
420 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2016 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_GEM_CLFLUSH_H__
|
|
#define __I915_GEM_CLFLUSH_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct drm_i915_private;
|
|
struct drm_i915_gem_object;
|
|
|
|
bool i915_gem_clflush_object(struct drm_i915_gem_object *obj,
|
|
unsigned int flags);
|
|
#define I915_CLFLUSH_FORCE BIT(0)
|
|
#define I915_CLFLUSH_SYNC BIT(1)
|
|
|
|
#endif /* __I915_GEM_CLFLUSH_H__ */
|