]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/input/ff-memless.c
sched: fine-tune SD_MC_INIT
[linux-2.6-omap-h63xx.git] / drivers / input / ff-memless.c
index d226d935b0dcd57afc9c0e3fb921c47f3005bf92..6790e975a98c327fd038198f535be9fc9059ab5b 100644 (file)
@@ -247,9 +247,9 @@ static void ml_combine_effects(struct ff_effect *effect,
                 * in s8, this should be changed to something more generic
                 */
                effect->u.ramp.start_level =
-                       max(min(effect->u.ramp.start_level + x, 0x7f), -0x80);
+                       clamp_val(effect->u.ramp.start_level + x, -0x80, 0x7f);
                effect->u.ramp.end_level =
-                       max(min(effect->u.ramp.end_level + y, 0x7f), -0x80);
+                       clamp_val(effect->u.ramp.end_level + y, -0x80, 0x7f);
                break;
 
        case FF_RUMBLE: