diff options
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bo.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index fb164efada3b..6f3c19522377 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bo.c +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c | |||
@@ -160,11 +160,11 @@ nouveau_bo_new(struct drm_device *dev, struct nouveau_channel *chan, | |||
160 | ret = ttm_bo_init(&dev_priv->ttm.bdev, &nvbo->bo, size, | 160 | ret = ttm_bo_init(&dev_priv->ttm.bdev, &nvbo->bo, size, |
161 | ttm_bo_type_device, &nvbo->placement, align, 0, | 161 | ttm_bo_type_device, &nvbo->placement, align, 0, |
162 | false, NULL, size, nouveau_bo_del_ttm); | 162 | false, NULL, size, nouveau_bo_del_ttm); |
163 | nvbo->channel = NULL; | ||
164 | if (ret) { | 163 | if (ret) { |
165 | /* ttm will call nouveau_bo_del_ttm if it fails.. */ | 164 | /* ttm will call nouveau_bo_del_ttm if it fails.. */ |
166 | return ret; | 165 | return ret; |
167 | } | 166 | } |
167 | nvbo->channel = NULL; | ||
168 | 168 | ||
169 | spin_lock(&dev_priv->ttm.bo_list_lock); | 169 | spin_lock(&dev_priv->ttm.bo_list_lock); |
170 | list_add_tail(&nvbo->head, &dev_priv->ttm.bo_list); | 170 | list_add_tail(&nvbo->head, &dev_priv->ttm.bo_list); |