From: Andrew Morton WARNING: line over 80 characters #39: FILE: drivers/char/vt.c:2207: + if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE, ¶m) == NOTIFY_STOP) WARNING: line over 80 characters #52: FILE: include/linux/notifier.h:250: +#define VT_PREWRITE 0x0005 /* A char is about to be written to the console */ total: 0 errors, 2 warnings, 32 lines checked ./patches/vt-notifier-extension-for-accessibility.patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Karl Dahlke Cc: Samuel Thibault Signed-off-by: Andrew Morton --- drivers/char/vt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/char/vt.c~vt-notifier-extension-for-accessibility-checkpatch-fixes drivers/char/vt.c --- a/drivers/char/vt.c~vt-notifier-extension-for-accessibility-checkpatch-fixes +++ a/drivers/char/vt.c @@ -2205,7 +2205,8 @@ rescan_last_byte: } param.c = tc; - if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE, ¶m) == NOTIFY_STOP) + if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE, + ¶m) == NOTIFY_STOP) continue; /* If the original code was a control character we _