From 66c92bdc1e2aab978d30d718a08cad5b01ccfab6 Mon Sep 17 00:00:00 2001 From: Levente Kurusa Date: Sun, 18 May 2014 13:41:15 +0200 Subject: [PATCH] qr: print_oops: actually disable the qr encoding when a bug occurs I forgot to actually disable the qr encoding... Signed-off-by: Levente Kurusa --- kernel/print_oops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/print_oops.c b/kernel/print_oops.c index 82b894f..867ef3c 100644 --- a/kernel/print_oops.c +++ b/kernel/print_oops.c @@ -144,6 +144,7 @@ void print_qr_err(void) if (bug_in_code) { printk(KERN_EMERG "QR encoding triggers an error. Disabling.\n"); + qr_oops = 0; return; } -- 1.8.3.1