diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 3b9d2bade8ad105e44440b3b33b0ae25f77b0e1f..43b4036e36fa04722d4adada9a5e1770a1b34577 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -134,12 +134,10 @@ * * Rounds @x up to next multiple of @y. If @y will always be a power * of 2, consider using the faster round_up(). - * - * The `const' here prevents gcc-3.3 from calling __divdi3 */ #define roundup(x, y) ( \ { \ - const typeof(y) __y = y; \ + typeof(y) __y = y; \ (((x) + (__y - 1)) / __y) * __y; \ } \ )