Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329674
b: refs/heads/master
c: da07e52
h: refs/heads/master
v: v3
  • Loading branch information
Ben Skeggs committed Oct 3, 2012
1 parent 48b2b70 commit 0a93712
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: aa74c3755ecc24914f9b3aaf5ba1436836697a7d
refs/heads/master: da07e52cf10c9584c7e197ac3d49455e1a4d4756
10 changes: 5 additions & 5 deletions trunk/drivers/gpu/drm/nouveau/nouveau_chan.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
int
nouveau_channel_idle(struct nouveau_channel *chan)
{
struct nouveau_drm *drm = chan->drm;
struct nouveau_cli *cli = chan->cli;
struct nouveau_fence *fence = NULL;
int ret;

Expand All @@ -58,7 +58,7 @@ nouveau_channel_idle(struct nouveau_channel *chan)
}

if (ret)
NV_ERROR(drm, "failed to idle channel 0x%08x\n", chan->handle);
NV_ERROR(cli, "failed to idle channel 0x%08x\n", chan->handle);
return ret;
}

Expand Down Expand Up @@ -381,17 +381,17 @@ nouveau_channel_new(struct nouveau_drm *drm, struct nouveau_cli *cli,

ret = nouveau_channel_ind(drm, cli, parent, handle, arg0, pchan);
if (ret) {
NV_DEBUG(drm, "ib channel create, %d\n", ret);
NV_DEBUG(cli, "ib channel create, %d\n", ret);
ret = nouveau_channel_dma(drm, cli, parent, handle, pchan);
if (ret) {
NV_DEBUG(drm, "dma channel create, %d\n", ret);
NV_DEBUG(cli, "dma channel create, %d\n", ret);
return ret;
}
}

ret = nouveau_channel_init(*pchan, arg0, arg1);
if (ret) {
NV_ERROR(drm, "channel failed to initialise, %d\n", ret);
NV_ERROR(cli, "channel failed to initialise, %d\n", ret);
nouveau_channel_del(pchan);
return ret;
}
Expand Down

0 comments on commit 0a93712

Please sign in to comment.