diff options
author | Jeevaka Badrappan <jeevaka.badrappan@elektrobit.com> | 2011-01-12 12:52:10 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2011-01-12 08:06:58 -0800 |
commit | bd782cfbf01b00ecf90439cdefd749200ccb7ca8 (patch) | |
tree | 4e6b3bf4013702ea716c9c7fb4a6b1a3d02e3a3f | |
parent | 15bf5be1a5345189ad43fe734ad9de3faf85b0c7 (diff) | |
download | ofono-bd782cfbf01b00ecf90439cdefd749200ccb7ca8.tar.bz2 |
calypsomodem: M15 coding style fix
-rw-r--r-- | drivers/calypsomodem/calypsomodem.h | 8 | ||||
-rw-r--r-- | drivers/calypsomodem/stk.c | 4 | ||||
-rw-r--r-- | drivers/calypsomodem/voicecall.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/drivers/calypsomodem/calypsomodem.h b/drivers/calypsomodem/calypsomodem.h index caf7a3d1..47ebf343 100644 --- a/drivers/calypsomodem/calypsomodem.h +++ b/drivers/calypsomodem/calypsomodem.h @@ -21,8 +21,8 @@ #include <drivers/atmodem/atutil.h> -extern void calypso_voicecall_init(); -extern void calypso_voicecall_exit(); +extern void calypso_voicecall_init(void); +extern void calypso_voicecall_exit(void); -extern void calypso_stk_init(); -extern void calypso_stk_exit(); +extern void calypso_stk_init(void); +extern void calypso_stk_exit(void); diff --git a/drivers/calypsomodem/stk.c b/drivers/calypsomodem/stk.c index 203cb9bc..196b9e33 100644 --- a/drivers/calypsomodem/stk.c +++ b/drivers/calypsomodem/stk.c @@ -300,12 +300,12 @@ static struct ofono_stk_driver driver = { .terminal_response = calypso_stk_terminal_response, }; -void calypso_stk_init() +void calypso_stk_init(void) { ofono_stk_driver_register(&driver); } -void calypso_stk_exit() +void calypso_stk_exit(void) { ofono_stk_driver_unregister(&driver); } diff --git a/drivers/calypsomodem/voicecall.c b/drivers/calypsomodem/voicecall.c index 0e6a3889..f87e480f 100644 --- a/drivers/calypsomodem/voicecall.c +++ b/drivers/calypsomodem/voicecall.c @@ -434,12 +434,12 @@ static struct ofono_voicecall_driver driver = { .send_tones = calypso_send_dtmf }; -void calypso_voicecall_init() +void calypso_voicecall_init(void) { ofono_voicecall_driver_register(&driver); } -void calypso_voicecall_exit() +void calypso_voicecall_exit(void) { ofono_voicecall_driver_unregister(&driver); } |