diff options
author | Rémi Denis-Courmont <remi.denis-courmont@nokia.com> | 2009-07-02 13:43:34 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel.holtmann@intel.com> | 2009-07-03 07:54:25 -0700 |
commit | 12062876644273560f9198ea2c044c4d44dbd83a (patch) | |
tree | 81c8b9c79574e334004172c48a2bfda149e9a24a | |
parent | c722e8077c6bdf7217b7b07c6cdf981f1b6f0e3a (diff) | |
download | ofono-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.h | 4 | ||||
-rw-r--r-- | drivers/isimodem/isi.h | 4 |
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; \ |