aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-02-06 22:13:49 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-02-07 05:29:54 +0100
commit12f564f85a9276ee8fafd30495f6b24024593719 (patch)
tree700ef938705b8f78d636359dd6680b9d8987c13a
parent324640c1648450a15124c786b5723ccfb0c6b0d5 (diff)
downloadhardware_replicant_libsamsung-ipc-12f564f85a9276ee8fafd30495f6b24024593719.tar.gz
hardware_replicant_libsamsung-ipc-12f564f85a9276ee8fafd30495f6b24024593719.tar.bz2
hardware_replicant_libsamsung-ipc-12f564f85a9276ee8fafd30495f6b24024593719.zip
devices: crespo: Reorder includes alphabetically
Acked-by: Fil Lupin <fillupin@protonmail.com> Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--samsung-ipc/devices/crespo/crespo.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/samsung-ipc/devices/crespo/crespo.c b/samsung-ipc/devices/crespo/crespo.c
index 612ce5d..8e1569c 100644
--- a/samsung-ipc/devices/crespo/crespo.c
+++ b/samsung-ipc/devices/crespo/crespo.c
@@ -20,22 +20,21 @@
*/
#define _GNU_SOURCE
-#include <stdlib.h>
-#include <stdio.h>
-#include <stdint.h>
-#include <unistd.h>
+#include <sys/ioctl.h>
+#include <fcntl.h>
#include <stdbool.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
-#include <fcntl.h>
-#include <sys/ioctl.h>
+#include <unistd.h>
-#include <samsung-ipc.h>
#include <ipc.h>
+#include <samsung-ipc.h>
+#include "crespo.h"
#include "crespo_modem_ctl.h"
-
#include "xmm616.h"
-#include "crespo.h"
int crespo_boot(struct ipc_client *client)
{