diff options
| author | Ben Skeggs <bskeggs@redhat.com> | 2017-01-24 16:08:14 +1000 | 
|---|---|---|
| committer | Ben Skeggs <bskeggs@redhat.com> | 2017-02-17 17:38:08 +1000 | 
| commit | 40cea73984a77acb714e1d4a60a47fdfb07b656f (patch) | |
| tree | bd4c58a16d0047c71f96fb9a718323e49883524d | |
| parent | e774055a074b6715193c2984024eecf8fdf8dbd1 (diff) | |
drm/nouveau/fifo/g84-: rename non-stall interrupt event
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
| -rw-r--r-- | drivers/gpu/drm/nouveau/include/nvif/cl826e.h | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/nouveau/include/nvif/cl826f.h | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/nouveau/include/nvif/cl906f.h | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/nouveau/include/nvif/cla06f.h | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_fence.c | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.c | 2 | 
6 files changed, 6 insertions, 6 deletions
diff --git a/drivers/gpu/drm/nouveau/include/nvif/cl826e.h b/drivers/gpu/drm/nouveau/include/nvif/cl826e.h index 05e6ef7cd190..91e33db21a2f 100644 --- a/drivers/gpu/drm/nouveau/include/nvif/cl826e.h +++ b/drivers/gpu/drm/nouveau/include/nvif/cl826e.h @@ -10,5 +10,5 @@ struct g82_channel_dma_v0 {  	__u64 offset;  }; -#define G82_CHANNEL_DMA_V0_NTFY_UEVENT                                     0x00 +#define NV826E_V0_NTFY_NON_STALL_INTERRUPT                                 0x00  #endif diff --git a/drivers/gpu/drm/nouveau/include/nvif/cl826f.h b/drivers/gpu/drm/nouveau/include/nvif/cl826f.h index cecafcb1e954..e34efd4ec537 100644 --- a/drivers/gpu/drm/nouveau/include/nvif/cl826f.h +++ b/drivers/gpu/drm/nouveau/include/nvif/cl826f.h @@ -11,5 +11,5 @@ struct g82_channel_gpfifo_v0 {  	__u64 vm;  }; -#define G82_CHANNEL_GPFIFO_V0_NTFY_UEVENT                                  0x00 +#define NV826F_V0_NTFY_NON_STALL_INTERRUPT                                 0x00  #endif diff --git a/drivers/gpu/drm/nouveau/include/nvif/cl906f.h b/drivers/gpu/drm/nouveau/include/nvif/cl906f.h index 2caf0838fcfd..e9302ec5cbfa 100644 --- a/drivers/gpu/drm/nouveau/include/nvif/cl906f.h +++ b/drivers/gpu/drm/nouveau/include/nvif/cl906f.h @@ -10,5 +10,5 @@ struct fermi_channel_gpfifo_v0 {  	__u64 vm;  }; -#define FERMI_CHANNEL_GPFIFO_V0_NTFY_UEVENT                                0x00 +#define NV906F_V0_NTFY_NON_STALL_INTERRUPT                                 0x00  #endif diff --git a/drivers/gpu/drm/nouveau/include/nvif/cla06f.h b/drivers/gpu/drm/nouveau/include/nvif/cla06f.h index 46301ec018ce..567123a8f874 100644 --- a/drivers/gpu/drm/nouveau/include/nvif/cla06f.h +++ b/drivers/gpu/drm/nouveau/include/nvif/cla06f.h @@ -25,5 +25,5 @@ struct kepler_channel_gpfifo_a_v0 {  	__u64 vm;  }; -#define NVA06F_V0_NTFY_UEVENT                                              0x00 +#define NVA06F_V0_NTFY_NON_STALL_INTERRUPT                                 0x00  #endif diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c b/drivers/gpu/drm/nouveau/nouveau_fence.c index a6126c93f215..f3e551f1aa46 100644 --- a/drivers/gpu/drm/nouveau/nouveau_fence.c +++ b/drivers/gpu/drm/nouveau/nouveau_fence.c @@ -190,7 +190,7 @@ nouveau_fence_context_new(struct nouveau_channel *chan, struct nouveau_fence_cha  		return;  	ret = nvif_notify_init(&chan->user, nouveau_fence_wait_uevent_handler, -			       false, G82_CHANNEL_DMA_V0_NTFY_UEVENT, +			       false, NV826E_V0_NTFY_NON_STALL_INTERRUPT,  			       &(struct nvif_notify_uevent_req) { },  			       sizeof(struct nvif_notify_uevent_req),  			       sizeof(struct nvif_notify_uevent_rep), diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.c b/drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.c index 15a992b3580a..66bd1cda5602 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.c @@ -35,7 +35,7 @@ g84_fifo_chan_ntfy(struct nvkm_fifo_chan *chan, u32 type,  		   struct nvkm_event **pevent)  {  	switch (type) { -	case G82_CHANNEL_DMA_V0_NTFY_UEVENT: +	case NV826E_V0_NTFY_NON_STALL_INTERRUPT:  		*pevent = &chan->fifo->uevent;  		return 0;  	default:  | 
