diff options
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_state.c | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/nv84_crypt.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c b/drivers/gpu/drm/nouveau/nouveau_state.c index b42e29d1935e..75e70022fbd3 100644 --- a/drivers/gpu/drm/nouveau/nouveau_state.c +++ b/drivers/gpu/drm/nouveau/nouveau_state.c | |||
@@ -437,6 +437,7 @@ static int nouveau_init_engine_ptrs(struct drm_device *dev) | |||
437 | engine->crypt.takedown = nv84_crypt_fini; | 437 | engine->crypt.takedown = nv84_crypt_fini; |
438 | engine->crypt.create_context = nv84_crypt_create_context; | 438 | engine->crypt.create_context = nv84_crypt_create_context; |
439 | engine->crypt.destroy_context = nv84_crypt_destroy_context; | 439 | engine->crypt.destroy_context = nv84_crypt_destroy_context; |
440 | engine->crypt.tlb_flush = nv84_crypt_tlb_flush; | ||
440 | break; | 441 | break; |
441 | default: | 442 | default: |
442 | engine->crypt.init = nouveau_stub_init; | 443 | engine->crypt.init = nouveau_stub_init; |
diff --git a/drivers/gpu/drm/nouveau/nv84_crypt.c b/drivers/gpu/drm/nouveau/nv84_crypt.c index 1cda0240f55d..780bb1d66f95 100644 --- a/drivers/gpu/drm/nouveau/nv84_crypt.c +++ b/drivers/gpu/drm/nouveau/nv84_crypt.c | |||
@@ -61,7 +61,7 @@ nv84_crypt_destroy_context(struct nouveau_channel *chan) | |||
61 | struct drm_device *dev = chan->dev; | 61 | struct drm_device *dev = chan->dev; |
62 | u32 inst; | 62 | u32 inst; |
63 | 63 | ||
64 | if (!chan->ramin) | 64 | if (!chan->crypt_ctx) |
65 | return; | 65 | return; |
66 | 66 | ||
67 | inst = (chan->ramin->vinst >> 12); | 67 | inst = (chan->ramin->vinst >> 12); |