diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-09-24 14:16:01 +0900 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-09-24 14:16:01 +0900 |
commit | c5fdbe882752ce625aa0aa2fe4ddb1e069e7c10a (patch) | |
tree | 28379e4577d49ffe56d7f821c948dd8eba841734 /drivers | |
parent | be1912fe9c30426dc138a6a7acec068e9151297e (diff) | |
download | ofono-c5fdbe882752ce625aa0aa2fe4ddb1e069e7c10a.tar.bz2 |
ifxmodem: Reorder voicecall driver before all other
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ifxmodem/ifxmodem.c | 2 | ||||
-rw-r--r-- | drivers/ifxmodem/ifxmodem.h | 6 |
2 files changed, 4 insertions, 4 deletions
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 <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(); |