summaryrefslogtreecommitdiff
path: root/nvkm/engine/fifo
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2013-08-21 13:26:42 +1000
committerBen Skeggs <bskeggs@redhat.com>2013-11-05 16:15:43 +1000
commit156813516058fdc72406a81095fe9021dde46f92 (patch)
tree9f4764eafd8cbbb59155d7fab11a0e93a02db688 /nvkm/engine/fifo
parent4faf7f2c6cb9cf68be4e8cb1136653036542da4c (diff)
downloadnouveau-156813516058fdc72406a81095fe9021dde46f92.tar.gz
vic: rename PUNK1C1 to PVIC
NVIDIA's name for what rnndb calls PVCOMP. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'nvkm/engine/fifo')
-rw-r--r--nvkm/engine/fifo/nv84.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nvkm/engine/fifo/nv84.c b/nvkm/engine/fifo/nv84.c
index 91a87cd71..0c2c18bea 100644
--- a/nvkm/engine/fifo/nv84.c
+++ b/nvkm/engine/fifo/nv84.c
@@ -144,7 +144,7 @@ nv84_fifo_object_attach(struct nouveau_object *parent,
case NVDEV_ENGINE_COPY0 : context |= 0x00300000; break;
case NVDEV_ENGINE_VP : context |= 0x00400000; break;
case NVDEV_ENGINE_CRYPT :
- case NVDEV_ENGINE_UNK1C1: context |= 0x00500000; break;
+ case NVDEV_ENGINE_VIC : context |= 0x00500000; break;
case NVDEV_ENGINE_BSP : context |= 0x00600000; break;
default:
return -EINVAL;
@@ -180,7 +180,7 @@ nv84_fifo_chan_ctor_dma(struct nouveau_object *parent,
(1ULL << NVDEV_ENGINE_BSP) |
(1ULL << NVDEV_ENGINE_PPP) |
(1ULL << NVDEV_ENGINE_COPY0) |
- (1ULL << NVDEV_ENGINE_UNK1C1), &chan);
+ (1ULL << NVDEV_ENGINE_VIC), &chan);
*pobject = nv_object(chan);
if (ret)
return ret;
@@ -243,7 +243,7 @@ nv84_fifo_chan_ctor_ind(struct nouveau_object *parent,
(1ULL << NVDEV_ENGINE_BSP) |
(1ULL << NVDEV_ENGINE_PPP) |
(1ULL << NVDEV_ENGINE_COPY0) |
- (1ULL << NVDEV_ENGINE_UNK1C1), &chan);
+ (1ULL << NVDEV_ENGINE_VIC), &chan);
*pobject = nv_object(chan);
if (ret)
return ret;