From ae2de17b16e56ced944ae844d43e29d4fb0c44d9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E9=BB=84=E6=B6=9B?= Date: Tue, 8 Apr 2014 08:53:53 +0800 Subject: [PATCH] ARM: rockchip: no real-time kconsole thread --- arch/arm/mach-rockchip/rk_fiq_debugger.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/arch/arm/mach-rockchip/rk_fiq_debugger.c b/arch/arm/mach-rockchip/rk_fiq_debugger.c index 9bd67b6a9be4..951118dfca0c 100644 --- a/arch/arm/mach-rockchip/rk_fiq_debugger.c +++ b/arch/arm/mach-rockchip/rk_fiq_debugger.c @@ -263,11 +263,8 @@ void rk_serial_debug_init(void __iomem *base, int irq, int signal_irq, int wakeu #ifdef CONFIG_RK_CONSOLE_THREAD t->console_task = kthread_create(console_thread, pdev, "kconsole"); - if (!IS_ERR(t->console_task)) { - struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 }; + if (!IS_ERR(t->console_task)) t->pdata.console_write = console_write; - sched_setscheduler_nocheck(t->console_task, SCHED_FIFO, ¶m); - } #endif pdev->name = "fiq_debugger"; -- 2.34.1