Skip to content

Commit

Permalink
Reorder some functions
Browse files Browse the repository at this point in the history
  • Loading branch information
holtmann committed Sep 3, 2008
1 parent 40c0305 commit af10dc7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
18 changes: 9 additions & 9 deletions audio/telephony-dummy.c
Expand Up @@ -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;
Expand All @@ -68,3 +59,12 @@ struct indicator *telephony_indicators_req(void)
{
return indicators;
}

int telephony_init(void)
{
return 0;
}

void telephony_exit(void)
{
}
8 changes: 3 additions & 5 deletions audio/telephony.h
Expand Up @@ -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);

0 comments on commit af10dc7

Please sign in to comment.