Commit e13fc28f authored by Alex Elder's avatar Alex Elder Committed by Greg Kroah-Hartman

greybus: loopback: use a 32-bit count

The count of statistical samples recorded is currently a 64-bit
value.  32 bits is sufficient, and in fact anything more than
that won't work for the do_div() call it's pass to anyway.  So make
the count field be 32 bits.
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent e051c82b
......@@ -27,7 +27,7 @@ struct gb_loopback_stats {
u32 max;
u64 avg;
u64 sum;
u64 count;
u32 count;
};
struct gb_loopback {
......
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