mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
drm/i915: move i915 specific bo implementation to i915
The bo interface implementation is different for both i915 and xe. Move the i915 specific implementation from display to i915 core. Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Link: https://patch.msgid.link/e159166d623899996a51a577365ca7ab9b1a0974.1773238670.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
95acbb0746
commit
e3ef2c2117
|
|
@ -76,6 +76,7 @@ i915-$(CONFIG_PERF_EVENTS) += \
|
|||
|
||||
# core display adaptation
|
||||
i915-y += \
|
||||
i915_bo.o \
|
||||
i915_display_pc8.o \
|
||||
i915_dpt.o \
|
||||
i915_dsb_buffer.o \
|
||||
|
|
@ -239,7 +240,6 @@ i915-y += \
|
|||
display/intel_atomic.o \
|
||||
display/intel_audio.o \
|
||||
display/intel_bios.o \
|
||||
display/intel_bo.o \
|
||||
display/intel_bw.o \
|
||||
display/intel_casf.o \
|
||||
display/intel_cdclk.o \
|
||||
|
|
|
|||
|
|
@ -3,12 +3,13 @@
|
|||
|
||||
#include <drm/drm_panic.h>
|
||||
|
||||
#include "display/intel_bo.h"
|
||||
|
||||
#include "gem/i915_gem_mman.h"
|
||||
#include "gem/i915_gem_object.h"
|
||||
#include "gem/i915_gem_object_frontbuffer.h"
|
||||
#include "pxp/intel_pxp.h"
|
||||
#include "i915_debugfs.h"
|
||||
#include "intel_bo.h"
|
||||
|
||||
bool intel_bo_is_tiled(struct drm_gem_object *obj)
|
||||
{
|
||||
Loading…
Reference in New Issue
Block a user