mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
11 lines
226 B
C
11 lines
226 B
C
![]() |
/* 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
|