Skip to content

Commit

Permalink
drm/nouveau/bios: add missing newline on IO*_OR opcode debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Apr 26, 2013
1 parent 28ec70f commit b9a3140
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/nouveau/core/subdev/bios/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ init_io_mask_or(struct nvbios_init *init)
u8 or = init_or(init);
u8 data;

trace("IO_MASK_OR\t0x03d4[0x%02x] &= ~(1 << 0x%02x)", index, or);
trace("IO_MASK_OR\t0x03d4[0x%02x] &= ~(1 << 0x%02x)\n", index, or);
init->offset += 2;

data = init_rdvgai(init, 0x03d4, index);
Expand All @@ -849,7 +849,7 @@ init_io_or(struct nvbios_init *init)
u8 or = init_or(init);
u8 data;

trace("IO_OR\t0x03d4[0x%02x] |= (1 << 0x%02x)", index, or);
trace("IO_OR\t0x03d4[0x%02x] |= (1 << 0x%02x)\n", index, or);
init->offset += 2;

data = init_rdvgai(init, 0x03d4, index);
Expand Down

0 comments on commit b9a3140

Please sign in to comment.