Skip to content

Commit

Permalink
drm/nouveau: prevent log mangling
Browse files Browse the repository at this point in the history
On 3.7-rc6, add missing newline to to prevent the following kernel log
line getting appended to the current one after switching the integrated
GPU and suspending the discrete GPU.

Signed-off-by: Daniel J Blueman <daniel@quora.org>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
dblueman authored and Ben Skeggs committed Nov 28, 2012
1 parent 04c8c21 commit c9aa763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/core/subdev/i2c/aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ auxch_init(struct nouveau_i2c *aux, int ch)
ctrl = nv_rd32(aux, 0x00e4e4 + (ch * 0x50));
udelay(1);
if (!timeout--) {
AUX_ERR("begin idle timeout 0x%08x", ctrl);
AUX_ERR("begin idle timeout 0x%08x\n", ctrl);
return -EBUSY;
}
} while (ctrl & 0x03010000);
Expand Down

0 comments on commit c9aa763

Please sign in to comment.