Skip to content

Commit

Permalink
drm/nouveau/gr: Fix typo in nv10.c
Browse files Browse the repository at this point in the history
This patch fix spelling typo in printk within nv10.c

Signed-off-by: Masanari Iida <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
standby24x7 authored and Jiri Kosina committed Aug 7, 2015
1 parent 804ff60 commit 4bb138a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/nouveau/nvkm/engine/gr/nv10.c
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ nv10_gr_ctx_regs_find_offset(struct nv10_gr_priv *priv, int reg)
if (nv10_gr_ctx_regs[i] == reg)
return i;
}
nv_error(priv, "unknow offset nv10_ctx_regs %d\n", reg);
nv_error(priv, "unknown offset nv10_ctx_regs %d\n", reg);
return -1;
}

Expand All @@ -857,7 +857,7 @@ nv17_gr_ctx_regs_find_offset(struct nv10_gr_priv *priv, int reg)
if (nv17_gr_ctx_regs[i] == reg)
return i;
}
nv_error(priv, "unknow offset nv17_ctx_regs %d\n", reg);
nv_error(priv, "unknown offset nv17_ctx_regs %d\n", reg);
return -1;
}

Expand Down

0 comments on commit 4bb138a

Please sign in to comment.