mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 23:03:57 -04:00
Fix the SPDX identifier comment as per the licensing rules [1]. [1] https://www.kernel.org/doc/html/latest/process/license-rules.html Reviewed-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> Link: https://patch.msgid.link/20260105113544.574323-8-ankit.k.nautiyal@intel.com
22 lines
667 B
C
22 lines
667 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2025 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_GVT_API_H__
|
|
#define __INTEL_GVT_API_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum pipe;
|
|
enum transcoder;
|
|
struct intel_display;
|
|
|
|
u32 intel_display_device_pipe_offset(struct intel_display *display, enum pipe pipe);
|
|
u32 intel_display_device_trans_offset(struct intel_display *display, enum transcoder trans);
|
|
u32 intel_display_device_cursor_offset(struct intel_display *display, enum pipe pipe);
|
|
u32 intel_display_device_mmio_base(struct intel_display *display);
|
|
bool intel_display_device_pipe_valid(struct intel_display *display, enum pipe pipe);
|
|
|
|
#endif /* __INTEL_GVT_API_H__ */
|