tools: iio: fix mask for 32 bit sensor data
authorIrina Tirdea <irina.tirdea@intel.com>
Fri, 24 Jul 2015 13:28:05 +0000 (16:28 +0300)
committerJonathan Cameron <jic23@kernel.org>
Sun, 2 Aug 2015 17:38:22 +0000 (18:38 +0100)
commitae067cb68d2ef42d4a84eeaf07411fe2936f48c4
tree07d69f6e0d1ded397d1d3ea89bb08bbb2f0ffd42
parent2854c098e222a706b91cc83b4a91dbfd97212765
tools: iio: fix mask for 32 bit sensor data

When the the sensor data uses 32 bits out of 32, generic_buffer prints
the value 0 for all data read.

In this case, the mask is shifted 32 bits, which is beyond the size of
an integer. This will lead to the mask always being 0. Before printing,
the mask is applied to the raw value, thus generating a final value of 0.

Fix the mask by shifting a 64 bit value instead of an integer.

Signed-off-by: Irina Tirdea <irina.tirdea@intel.com>
Acked-by: Hartmut Knaack <knaack.h@gmx.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
tools/iio/iio_utils.c