ifxmodem: Reorder voicecall driver before all other

This commit is contained in:
Marcel Holtmann 2010-09-24 14:16:01 +09:00
parent be1912fe9c
commit c5fdbe8827
3 changed files with 6 additions and 6 deletions

View File

@ -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 \

View File

@ -34,9 +34,9 @@
static int ifxmodem_init(void)
{
ifx_voicecall_init();
ifx_radio_settings_init();
ifx_stk_init();
ifx_voicecall_init();
return 0;
}

View File

@ -21,11 +21,11 @@
#include <drivers/atmodem/atutil.h>
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();