linux/drivers/gpu/drm/nouveau/include/nvkm/subdev/acr.h

11 lines
226 B
C
Raw Normal View History

/* SPDX-License-Identifier: MIT */
#ifndef __NVKM_ACR_H__
#define __NVKM_ACR_H__
#define nvkm_acr(p) container_of((p), struct nvkm_acr, subdev)
#include <core/subdev.h>
struct nvkm_acr {
struct nvkm_subdev subdev;
};
#endif