Blame view

kernel/linux-rt-4.4.41/drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.h 309 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
  #ifndef __NVKM_DEVICE_CTRL_H__
  #define __NVKM_DEVICE_CTRL_H__
  #define nvkm_control(p) container_of((p), struct nvkm_control, object)
  #include <core/device.h>
  
  struct nvkm_control {
  	struct nvkm_object object;
  	struct nvkm_device *device;
  };
  
  extern const struct nvkm_device_oclass nvkm_control_oclass;
  #endif