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
14 lines
273 B
C
14 lines
273 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2017 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_GEMFS_H__
|
|
#define __I915_GEMFS_H__
|
|
|
|
struct drm_i915_private;
|
|
|
|
void i915_gemfs_init(struct drm_i915_private *i915);
|
|
void i915_gemfs_fini(struct drm_i915_private *i915);
|
|
|
|
#endif
|