kernel: Constify temporary variable in roundup()

Fix build error with GCC 3.x caused by commit b28efd54
"kernel: roundup should only reference arguments once" by constifying
temporary variable used in that macro.

Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Suggested-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>

authored by Tetsuo Handa and committed by James Morris 6070bf35 a7bcf21e

+1 -1
+1 -1
include/linux/kernel.h
··· 60 60 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) 61 61 #define roundup(x, y) ( \ 62 62 { \ 63 - typeof(y) __y = y; \ 63 + const typeof(y) __y = y; \ 64 64 (((x) + (__y - 1)) / __y) * __y; \ 65 65 } \ 66 66 )