Commit 36520841 authored by Fabian Frederick's avatar Fabian Frederick Committed by Tomi Valkeinen

video/console: use swap() in newport_bmove()

Use kernel.h macro definition.
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 1ebd8ecc
...@@ -687,7 +687,7 @@ static int newport_scroll(struct vc_data *vc, int t, int b, int dir, ...@@ -687,7 +687,7 @@ static int newport_scroll(struct vc_data *vc, int t, int b, int dir,
static void newport_bmove(struct vc_data *vc, int sy, int sx, int dy, static void newport_bmove(struct vc_data *vc, int sy, int sx, int dy,
int dx, int h, int w) int dx, int h, int w)
{ {
short xs, ys, xe, ye, xoffs, yoffs, tmp; short xs, ys, xe, ye, xoffs, yoffs;
xs = sx << 3; xs = sx << 3;
xe = ((sx + w) << 3) - 1; xe = ((sx + w) << 3) - 1;
...@@ -701,9 +701,7 @@ static void newport_bmove(struct vc_data *vc, int sy, int sx, int dy, ...@@ -701,9 +701,7 @@ static void newport_bmove(struct vc_data *vc, int sy, int sx, int dy,
yoffs = (dy - sy) << 4; yoffs = (dy - sy) << 4;
if (xoffs > 0) { if (xoffs > 0) {
/* move to the right, exchange starting points */ /* move to the right, exchange starting points */
tmp = xe; swap(xe, xs);
xe = xs;
xs = tmp;
} }
newport_wait(npregs); newport_wait(npregs);
npregs->set.drawmode0 = (NPORT_DMODE0_S2S | NPORT_DMODE0_BLOCK | npregs->set.drawmode0 = (NPORT_DMODE0_S2S | NPORT_DMODE0_BLOCK |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment