diff --git a/profiles/alert/server.c b/profiles/alert/server.c
index b99aa3f..2f6e3cd 100644
--- a/profiles/alert/server.c
+++ b/profiles/alert/server.c
#include <stdbool.h>
#include <errno.h>
-#include <gdbus/gdbus.h>
-#include <glib.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <glib.h>
+
#include "lib/bluetooth.h"
#include "lib/hci.h"
#include "lib/hci_lib.h"
#include "lib/sdp.h"
#include "lib/uuid.h"
+#include "gdbus/gdbus.h"
+
#include "src/plugin.h"
#include "src/dbus-common.h"
#include "attrib/att.h"
diff --git a/profiles/audio/player.c b/profiles/audio/player.c
index 168e677..94eb2eb 100644
--- a/profiles/audio/player.c
+++ b/profiles/audio/player.c
#include <glib.h>
#include <dbus/dbus.h>
-#include <gdbus/gdbus.h>
+
+#include "gdbus/gdbus.h"
#include "src/log.h"
#include "src/dbus-common.h"
diff --git a/profiles/cyclingspeed/cyclingspeed.c b/profiles/cyclingspeed/cyclingspeed.c
index bd7e1e5..e447725 100644
--- a/profiles/cyclingspeed/cyclingspeed.c
+++ b/profiles/cyclingspeed/cyclingspeed.c
#include <errno.h>
#include <stdbool.h>
+
#include <glib.h>
-#include <gdbus/gdbus.h>
#include "lib/bluetooth.h"
#include "lib/sdp.h"
diff --git a/profiles/health/hdp_main.c b/profiles/health/hdp_main.c
index 6dc9acf..2c4bbe2 100644
--- a/profiles/health/hdp_main.c
+++ b/profiles/health/hdp_main.c
#endif
#include <errno.h>
-#include <gdbus/gdbus.h>
-#include "src/plugin.h"
+#include "gdbus/gdbus.h"
+#include "src/plugin.h"
#include "hdp_manager.h"
static int hdp_init(void)
diff --git a/profiles/iap/main.c b/profiles/iap/main.c
index 0e8f43f..53dd9fb 100644
--- a/profiles/iap/main.c
+++ b/profiles/iap/main.c
#include <sys/signalfd.h>
#include <glib.h>
-#include <gdbus.h>
+
+#include "gdbus/gdbus.h"
#define IAP_PATH "/org/bluez/iap"
diff --git a/profiles/proximity/main.c b/profiles/proximity/main.c
index 8a350d4..38a51f1 100644
--- a/profiles/proximity/main.c
+++ b/profiles/proximity/main.c
#include <errno.h>
#include <stdint.h>
#include <glib.h>
-#include <gdbus/gdbus.h>
+
+#include "gdbus/gdbus.h"
#include "src/log.h"
#include "src/plugin.h"
diff --git a/profiles/sap/main.c b/profiles/sap/main.c
index ad55cd2..cd707ff 100644
--- a/profiles/sap/main.c
+++ b/profiles/sap/main.c
#endif
#include <errno.h>
-#include <gdbus/gdbus.h>
+
+#include "gdbus/gdbus.h"
+
#include "src/plugin.h"
#include "manager.h"
diff --git a/profiles/sap/sap-dummy.c b/profiles/sap/sap-dummy.c
index 854105e..53463ca 100644
--- a/profiles/sap/sap-dummy.c
+++ b/profiles/sap/sap-dummy.c
#endif
#include <glib.h>
-#include <gdbus/gdbus.h>
#include <stdint.h>
+#include "gdbus/gdbus.h"
+
#include "src/dbus-common.h"
#include "src/error.h"
#include "src/log.h"
+
#include "sap.h"
#define SAP_DUMMY_IFACE "org.bluez.SimAccessTest1"
diff --git a/profiles/sap/server.c b/profiles/sap/server.c
index a958761..ce423a1 100644
--- a/profiles/sap/server.c
+++ b/profiles/sap/server.c
#include "lib/sdp_lib.h"
#include "lib/uuid.h"
+#include "gdbus/gdbus.h"
+
#include "btio/btio.h"
#include "src/adapter.h"
#include "src/sdpd.h"
#include "src/error.h"
#include "src/dbus-common.h"
#include "src/shared/util.h"
+
#include "sap.h"
#include "server.h"
diff --git a/profiles/sap/server.h b/profiles/sap/server.h
index d7e674a..4bf9296 100644
--- a/profiles/sap/server.h
+++ b/profiles/sap/server.h
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <gdbus/gdbus.h>
-
int sap_server_register(struct btd_adapter *adapter);
void sap_server_unregister(const char *path);