Commit f8656f0b authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: use NULL file_priv for DRM-created channels

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 3f0a68d8
......@@ -449,8 +449,8 @@ nouveau_card_init_channel(struct drm_device *dev)
struct drm_nouveau_private *dev_priv = dev->dev_private;
int ret;
ret = nouveau_channel_alloc(dev, &dev_priv->channel,
(struct drm_file *)-2, NvDmaFB, NvDmaTT);
ret = nouveau_channel_alloc(dev, &dev_priv->channel, NULL,
NvDmaFB, NvDmaTT);
if (ret)
return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment