linux/drivers/gpu/host1x/context.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2021, NVIDIA Corporation.
 */

#include <linux/device.h>
#include <linux/kref.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/pid.h>
#include <linux/slab.h>

#include "context.h"
#include "dev.h"

static void host1x_memory_context_release(struct device *dev)
{}

int host1x_memory_context_list_init(struct host1x *host1x)
{}

void host1x_memory_context_list_free(struct host1x_memory_context_list *cdl)
{}

struct host1x_memory_context *host1x_memory_context_alloc(struct host1x *host1x,
							  struct device *dev,
							  struct pid *pid)
{}
EXPORT_SYMBOL_GPL();

void host1x_memory_context_get(struct host1x_memory_context *cd)
{}
EXPORT_SYMBOL_GPL();

void host1x_memory_context_put(struct host1x_memory_context *cd)
{}
EXPORT_SYMBOL_GPL();