summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Denis-Courmont <remi.denis-courmont@nokia.com>2009-07-02 13:43:34 +0300
committerMarcel Holtmann <marcel.holtmann@intel.com>2009-07-03 07:54:25 -0700
commit12062876644273560f9198ea2c044c4d44dbd83a (patch)
tree81c8b9c79574e334004172c48a2bfda149e9a24a
parentc722e8077c6bdf7217b7b07c6cdf981f1b6f0e3a (diff)
downloadofono-12062876644273560f9198ea2c044c4d44dbd83a.tar.bz2
Do not include <config.h> from headers
It should be included _first_ in all modules, and it is not proof against multiple inclusions.
-rw-r--r--drivers/atmodem/at.h4
-rw-r--r--drivers/isimodem/isi.h4
2 files changed, 0 insertions, 8 deletions
diff --git a/drivers/atmodem/at.h b/drivers/atmodem/at.h
index 03002822..3cc3cb13 100644
--- a/drivers/atmodem/at.h
+++ b/drivers/atmodem/at.h
@@ -19,10 +19,6 @@
*
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
struct at_data {
GAtChat *parser;
struct ofono_modem *modem;
diff --git a/drivers/isimodem/isi.h b/drivers/isimodem/isi.h
index b89a6947..e808bfd8 100644
--- a/drivers/isimodem/isi.h
+++ b/drivers/isimodem/isi.h
@@ -21,10 +21,6 @@
*
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#define DECLARE_FAILURE(e) \
struct ofono_error e; \
e.type = OFONO_ERROR_TYPE_FAILURE; \