mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 01:48:58 -04:00
This is xe core code, use struct xe_device for simplicity. Reviewed-by: Michał Grzelak <michal.grzelak@intel.com> Link: https://patch.msgid.link/56bd532dc5cf460cdbf17c7781f18db5378a28e6.1774950508.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
16 lines
342 B
C
16 lines
342 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2026 Intel Corporation */
|
|
|
|
#ifndef __XE_DISPLAY_BO_H__
|
|
#define __XE_DISPLAY_BO_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct xe_device;
|
|
|
|
bool xe_display_bo_fbdev_prefer_stolen(struct xe_device *xe, unsigned int size);
|
|
|
|
extern const struct intel_display_bo_interface xe_display_bo_interface;
|
|
|
|
#endif
|