Skip to content

Commit

Permalink
Merge branch 'drm-nouveau-fixes-3.9' of git://anongit.freedesktop.org…
Browse files Browse the repository at this point in the history
…/git/nouveau/linux-2.6 into drm-fixes

too many semicolons.

* 'drm-nouveau-fixes-3.9' of git://anongit.freedesktop.org/git/nouveau/linux-2.6:
  drm/nouveau: fix unconditional return waiting on memory
  • Loading branch information
Dave Airlie committed Apr 8, 2013
2 parents f011a08 + b1ea3e6 commit c9cdee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nv50_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ nv50_display_flip_wait(void *data)
{
struct nv50_display_flip *flip = data;
if (nouveau_bo_rd32(flip->disp->sync, flip->chan->addr / 4) ==
flip->chan->data);
flip->chan->data)
return true;
usleep_range(1, 2);
return false;
Expand Down

0 comments on commit c9cdee1

Please sign in to comment.