Commit 3b5d86fc authored by Christian König's avatar Christian König Committed by Alex Deucher

drm/amdgpu: move struct amdgpu_vram_reservation into vram mgr

Not used outside of that file.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Acked-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Tested-by: default avatarNirmoy Das <nirmoy.das@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent dfffdf5e
...@@ -37,11 +37,6 @@ ...@@ -37,11 +37,6 @@
#define AMDGPU_POISON 0xd0bed0be #define AMDGPU_POISON 0xd0bed0be
struct amdgpu_vram_reservation {
struct list_head node;
struct drm_mm_node mm_node;
};
struct amdgpu_vram_mgr { struct amdgpu_vram_mgr {
struct ttm_resource_manager manager; struct ttm_resource_manager manager;
struct drm_mm mm; struct drm_mm mm;
......
...@@ -29,6 +29,11 @@ ...@@ -29,6 +29,11 @@
#include "amdgpu_atomfirmware.h" #include "amdgpu_atomfirmware.h"
#include "atom.h" #include "atom.h"
struct amdgpu_vram_reservation {
struct list_head node;
struct drm_mm_node mm_node;
};
static inline struct amdgpu_vram_mgr * static inline struct amdgpu_vram_mgr *
to_vram_mgr(struct ttm_resource_manager *man) to_vram_mgr(struct ttm_resource_manager *man)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment