From af10dc7079d7d11e7a15abd4f04b5cae4dc1667e Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 3 Sep 2008 16:49:02 +0200 Subject: Reorder some functions --- audio/telephony-dummy.c | 18 +++++++++--------- audio/telephony.h | 8 +++----- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/audio/telephony-dummy.c b/audio/telephony-dummy.c index 5a9f244d..c0686e2f 100644 --- a/audio/telephony-dummy.c +++ b/audio/telephony-dummy.c @@ -46,15 +46,6 @@ static struct indicator indicators[] = { NULL } }; -int telephony_init(void) -{ - return 0; -} - -void telephony_exit(void) -{ -} - int telephony_features_req(void) { uint32_t features = 0; @@ -68,3 +59,12 @@ struct indicator *telephony_indicators_req(void) { return indicators; } + +int telephony_init(void) +{ + return 0; +} + +void telephony_exit(void) +{ +} diff --git a/audio/telephony.h b/audio/telephony.h index 6c40d8e3..8b8ebf12 100644 --- a/audio/telephony.h +++ b/audio/telephony.h @@ -40,12 +40,10 @@ struct indicator { int val; }; -int telephony_init(void); - -void telephony_exit(void); - int telephony_features_req(void); - void telephony_features_rsp(uint32_t features); struct indicator *telephony_indicators_req(void); + +int telephony_init(void); +void telephony_exit(void); -- cgit