diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-10-19 22:13:19 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-10-19 22:13:19 -0500 |
commit | f726596860dcc3244008a0588812a3f81b0651f8 (patch) | |
tree | d1342c1cd8fe439d1da42f4763437894a1628b82 | |
parent | c4594d254365a9724a51687bc026b1205cd93f0b (diff) | |
download | ofono-f726596860dcc3244008a0588812a3f81b0651f8.tar.bz2 |
Rename: drivers/hfpmodem/hfp.[ch] to hfpmodem.[ch]
Be more consistent with other drivers
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | drivers/hfpmodem/hfpmodem.c (renamed from drivers/hfpmodem/hfp.c) | 2 | ||||
-rw-r--r-- | drivers/hfpmodem/hfpmodem.h (renamed from drivers/hfpmodem/hfp.h) | 0 | ||||
-rw-r--r-- | plugins/hfp.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index aed16365..2be469a5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -121,8 +121,8 @@ builtin_sources += drivers/atmodem/atutil.h \ builtin_modules += hfpmodem builtin_sources += drivers/atmodem/atutil.h \ - drivers/hfpmodem/hfp.h \ - drivers/hfpmodem/hfp.c + drivers/hfpmodem/hfpmodem.h \ + drivers/hfpmodem/hfpmodem.c builtin_modules += modemconf builtin_sources += plugins/modemconf.c diff --git a/drivers/hfpmodem/hfp.c b/drivers/hfpmodem/hfpmodem.c index 2d9e6a56..615acd38 100644 --- a/drivers/hfpmodem/hfp.c +++ b/drivers/hfpmodem/hfpmodem.c @@ -37,7 +37,7 @@ #include <gatchat.h> #include <gatresult.h> -#include "hfp.h" +#include "hfpmodem.h" static int hfpmodem_init(void) { diff --git a/drivers/hfpmodem/hfp.h b/drivers/hfpmodem/hfpmodem.h index 6c6ab6fd..6c6ab6fd 100644 --- a/drivers/hfpmodem/hfp.h +++ b/drivers/hfpmodem/hfpmodem.h diff --git a/plugins/hfp.c b/plugins/hfp.c index c2973be3..9733cfca 100644 --- a/plugins/hfp.c +++ b/plugins/hfp.c @@ -49,7 +49,7 @@ #include <ofono/ussd.h> #include <ofono/voicecall.h> -#include <drivers/hfpmodem/hfp.h> +#include <drivers/hfpmodem/hfpmodem.h> static const char *brsf_prefix[] = { "+BRSF:", NULL }; static const char *cind_prefix[] = { "+CIND:", NULL }; |