From: arighi Date: Thu, 3 Mar 2011 11:35:37 +0000 (+0000) Subject: ek-lm3s1968: kbd driver depends on the proc module now X-Git-Tag: 2.7.0~222 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=d9702a4ca1fdae000e0cb4d0a8074e8611647e03;p=bertos.git ek-lm3s1968: kbd driver depends on the proc module now git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4744 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/boards/ek-lm3s1968/templates/kernel/main.c b/boards/ek-lm3s1968/templates/kernel/main.c index 13adcb0f..677553ed 100644 --- a/boards/ek-lm3s1968/templates/kernel/main.c +++ b/boards/ek-lm3s1968/templates/kernel/main.c @@ -72,6 +72,11 @@ static void init(void) kdbg_init(); /* Initialize system timer */ timer_init(); + /* + * Kernel initialization: processes (allow to create and dispatch + * processes using proc_new()). + */ + proc_init(); /* Initialize UART1 */ ser_init(&out, SER_UART1); /* Configure UART1 to work at 115.200 bps */ @@ -88,12 +93,6 @@ static void init(void) kbd_init(); /* Initialize the internal flash memory */ flash_init(&flash, 0); - - /* - * Kernel initialization: processes (allow to create and dispatch - * processes using proc_new()). - */ - proc_init(); } static void NORETURN led_process(void)