License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / drivers / gpu / drm / nouveau / nvkm / engine / device / ctrl.h
blobf279162f48c6b239443f0de2997a3e5b88ed167c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NVKM_DEVICE_CTRL_H__
3 #define __NVKM_DEVICE_CTRL_H__
4 #define nvkm_control(p) container_of((p), struct nvkm_control, object)
5 #include <core/device.h>
7 struct nvkm_control {
8 struct nvkm_object object;
9 struct nvkm_device *device;
12 extern const struct nvkm_device_oclass nvkm_control_oclass;
13 #endif