From fdfdde03a71a57bd3eeb70532a89fcdb9e1a9b10 Mon Sep 17 00:00:00 2001 From: Dara Spieker-Doyle Date: Thu, 13 Jan 2011 13:02:53 -0800 Subject: [PATCH] cdmamodem: M15 Coding style fix --- drivers/cdmamodem/cdmamodem.h | 4 ++-- drivers/cdmamodem/voicecall.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/cdmamodem/cdmamodem.h b/drivers/cdmamodem/cdmamodem.h index b0855412..5011adee 100644 --- a/drivers/cdmamodem/cdmamodem.h +++ b/drivers/cdmamodem/cdmamodem.h @@ -21,5 +21,5 @@ #include -extern void cdma_voicecall_init(); -extern void cdma_voicecall_exit(); +extern void cdma_voicecall_init(void); +extern void cdma_voicecall_exit(void); diff --git a/drivers/cdmamodem/voicecall.c b/drivers/cdmamodem/voicecall.c index 5b4f3ccc..a0fa79fe 100644 --- a/drivers/cdmamodem/voicecall.c +++ b/drivers/cdmamodem/voicecall.c @@ -147,12 +147,12 @@ static struct ofono_cdma_voicecall_driver driver = { .hangup = cdma_hangup, }; -void cdma_voicecall_init() +void cdma_voicecall_init(void) { ofono_cdma_voicecall_driver_register(&driver); } -void cdma_voicecall_exit() +void cdma_voicecall_exit(void) { ofono_cdma_voicecall_driver_unregister(&driver); }