linux/drivers/gpu/drm/ttm/ttm_sys_manager.c

/* SPDX-License-Identifier: GPL-2.0 OR MIT */

#include <drm/ttm/ttm_resource.h>
#include <drm/ttm/ttm_device.h>
#include <drm/ttm/ttm_placement.h>
#include <linux/slab.h>

#include "ttm_module.h"

static int ttm_sys_man_alloc(struct ttm_resource_manager *man,
			     struct ttm_buffer_object *bo,
			     const struct ttm_place *place,
			     struct ttm_resource **res)
{}

static void ttm_sys_man_free(struct ttm_resource_manager *man,
			     struct ttm_resource *res)
{}

static const struct ttm_resource_manager_func ttm_sys_manager_func =;

void ttm_sys_man_init(struct ttm_device *bdev)
{}