diff --git a/drivers/input/joydev.c b/drivers/input/joydev.c index abd18f31b24f68e27c28f1120e52aa96b9347887..5298a762b61588ea397c2ea95f357b17033e0819 100644 --- a/drivers/input/joydev.c +++ b/drivers/input/joydev.c @@ -87,7 +87,7 @@ static int joydev_correct(int value, struct js_corr *corr) return 0; } - return value < -32767 ? -32767 : (value > 32767 ? 32767 : value); + return clamp(value, -32767, 32767); } static void joydev_pass_event(struct joydev_client *client,