Fix: missing parenthesis in offset_align_floor
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 16 Jan 2015 16:33:56 +0000 (11:33 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 16 Jan 2015 16:34:20 +0000 (11:34 -0500)
Is currently unused. Triggers a compile error when used.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
lib/align.h

index 4929c5124a719a4c48d9d3bcf04f6936b8f57021..a21169ea62bfce36faf9824be9fd0389fca5554b 100644 (file)
@@ -65,7 +65,7 @@
        ({                                                                     \
                BUILD_RUNTIME_BUG_ON((alignment) == 0                          \
                                   || ((alignment) & ((alignment) - 1)));      \
-               (((align_drift) - (alignment)) & ((alignment) - 1)           \
+               (((align_drift) - (alignment)) & ((alignment) - 1));           \
        })
 
 #endif /* __KERNEL__ */
This page took 0.025769 seconds and 4 git commands to generate.