From 6c803ef8a0b1be6cd161910b9883c303509420e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Mon, 28 Sep 2015 01:26:06 +0200 Subject: [PATCH] Fix an overflow in constant force scaling in the testing module --- testmod/klgdff.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testmod/klgdff.c b/testmod/klgdff.c index 8b57b75..c80995b 100644 --- a/testmod/klgdff.c +++ b/testmod/klgdff.c @@ -145,7 +145,7 @@ static int klgdff_start(struct klgd_command_stream *s, const struct ff_effect *e { s32 x; s32 y; - s16 level = effect->u.constant.level * gain / 0xFFFF; + s32 level = effect->u.constant.level * gain / 0xFFFF; ffpl_lvl_dir_to_x_y(level, effect->direction, &x, &y); text = kasprintf(GFP_KERNEL, "Playing FF_CONSTANT, level: %d, dir: %u, X: %d, Y: %d", level, effect->direction, x, y); @@ -196,7 +196,7 @@ static int klgdff_update(struct klgd_command_stream *s, const struct ff_effect * { s32 x; s32 y; - s16 level = effect->u.constant.level * gain / 0xFFFF; + s32 level = effect->u.constant.level * gain / 0xFFFF; ffpl_lvl_dir_to_x_y(level, effect->direction, &x, &y); text = kasprintf(GFP_KERNEL, "Updating FF_CONSTANT, level: %d, dir: %u, X: %d, Y: %d", level, effect->direction, x, y); @@ -247,7 +247,7 @@ static int klgdff_up_start(struct klgd_command_stream *s, const struct ff_effect { s32 x; s32 y; - s16 level = effect->u.constant.level * gain / 0xFFFF; + s32 level = effect->u.constant.level * gain / 0xFFFF; ffpl_lvl_dir_to_x_y(level, effect->direction, &x, &y); text = kasprintf(GFP_KERNEL, "Uploading and starting FF_CONSTANT, level: %d, dir: %u, X: %d, Y: %d", level, effect->direction, x, y); -- 2.43.5