From c5fdbe882752ce625aa0aa2fe4ddb1e069e7c10a Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 24 Sep 2010 14:16:01 +0900 Subject: [PATCH] ifxmodem: Reorder voicecall driver before all other --- Makefile.am | 4 ++-- drivers/ifxmodem/ifxmodem.c | 2 +- drivers/ifxmodem/ifxmodem.h | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index 0f3e1929..d4e27c99 100644 --- a/Makefile.am +++ b/Makefile.am @@ -208,9 +208,9 @@ builtin_modules += ifxmodem builtin_sources += drivers/atmodem/atutil.h \ drivers/ifxmodem/ifxmodem.h \ drivers/ifxmodem/ifxmodem.c \ + drivers/ifxmodem/voicecall.c \ drivers/ifxmodem/radio-settings.c \ - drivers/ifxmodem/stk.c \ - drivers/ifxmodem/voicecall.c + drivers/ifxmodem/stk.c builtin_modules += stemodem builtin_sources += drivers/atmodem/atutil.h \ diff --git a/drivers/ifxmodem/ifxmodem.c b/drivers/ifxmodem/ifxmodem.c index 75cd3019..cfcf6de0 100644 --- a/drivers/ifxmodem/ifxmodem.c +++ b/drivers/ifxmodem/ifxmodem.c @@ -34,9 +34,9 @@ static int ifxmodem_init(void) { + ifx_voicecall_init(); ifx_radio_settings_init(); ifx_stk_init(); - ifx_voicecall_init(); return 0; } diff --git a/drivers/ifxmodem/ifxmodem.h b/drivers/ifxmodem/ifxmodem.h index c9353a9a..2450a443 100644 --- a/drivers/ifxmodem/ifxmodem.h +++ b/drivers/ifxmodem/ifxmodem.h @@ -21,11 +21,11 @@ #include +extern void ifx_voicecall_init(); +extern void ifx_voicecall_exit(); + extern void ifx_radio_settings_init(); extern void ifx_radio_settings_exit(); extern void ifx_stk_init(); extern void ifx_stk_exit(); - -extern void ifx_voicecall_init(); -extern void ifx_voicecall_exit();