Remove labs() since it is not used/needed. Signed-off-by: Richard Knutsson <[EMAIL PROTECTED]> --- Could not find any references to it (other then defined in gcc's stdlib.h), compile-tested with "allyes" on i386 just to be sure. If abs()'s int is not sufficient, it then should be replaced with typeof (imho).
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 63fb18d..a029430 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -92,11 +92,6 @@ extern int cond_resched(void); (__x < 0) ? -__x : __x; \ }) -#define labs(x) ({ \ - long __x = (x); \ - (__x < 0) ? -__x : __x; \ - }) - extern struct atomic_notifier_head panic_notifier_list; extern long (*panic_blink)(long time); NORET_TYPE void panic(const char * fmt, ...) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/