aboutsummaryrefslogtreecommitdiffstats
path: root/src/memory.c
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-05-14 01:09:42 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-05-14 01:41:39 +0200
commitf02210172efc6bfc05c4598c14e1268d2828097e (patch)
tree00457552d4fe048b17b4a73d58d17c9db63552f8 /src/memory.c
parent1e37ed517ef0906767a230ab384b8e66869cf4b2 (diff)
downloadxorg-input-kobomultitouch-f02210172efc6bfc05c4598c14e1268d2828097e.tar.gz
xorg-input-kobomultitouch-f02210172efc6bfc05c4598c14e1268d2828097e.tar.bz2
xorg-input-kobomultitouch-f02210172efc6bfc05c4598c14e1268d2828097e.zip
Simplify bit bookkeeping
In preparation of adding several additional finger bit registers, remove the redundant bit-counting variables and introduce fast bit-traversal functions instead. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/memory.c')
-rw-r--r--src/memory.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/memory.c b/src/memory.c
index 15b483c..0e2edba 100644
--- a/src/memory.c
+++ b/src/memory.c
@@ -32,8 +32,6 @@ void output_memory(const struct Memory *m)
xf86Msg(X_INFO, "btdata: %04x\n", m->btdata);
xf86Msg(X_INFO, "pointing: %04x\n", m->pointing);
xf86Msg(X_INFO, "moving: %04x\n", m->moving);
- xf86Msg(X_INFO, "npoint: %d\n", m->npoint);
xf86Msg(X_INFO, "ybar: %d\n", m->ybar);
xf86Msg(X_INFO, "move_time: %lld\n", m->move_time);
- xf86Msg(X_INFO, "nmove: %d\n", m->nmove);
}