aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/devices/i9300/i9300.c
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-07-15 16:27:40 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-07-22 23:14:29 +0200
commit73aa86f31bb004c48c5250ea43cca9ed9d51cb17 (patch)
treec2b6edeab01dcf0cb033b57624c767689715901b /samsung-ipc/devices/i9300/i9300.c
parent73cf5bcb6bc21c0a9b14378bd35f595c48fccd7b (diff)
downloadhardware_replicant_libsamsung-ipc-73aa86f31bb004c48c5250ea43cca9ed9d51cb17.tar.gz
hardware_replicant_libsamsung-ipc-73aa86f31bb004c48c5250ea43cca9ed9d51cb17.tar.bz2
hardware_replicant_libsamsung-ipc-73aa86f31bb004c48c5250ea43cca9ed9d51cb17.zip
samsung-ipc: make #include relative to samsung-ipc/
This has several advantages: - It makes the header context more obvious: #include "xmm626.h" could mislead people into thinking that the xmm626.h header is in the same directory than the file using that directive, while it is instead in another location. This in turn could make people suppose that there is a "xmm626.h" header specific to the galaxys2 driver. Instead the #include "modems/xmm616/xmm616.h" directive is much more clear. - We can have two headers with the same filename. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'samsung-ipc/devices/i9300/i9300.c')
-rw-r--r--samsung-ipc/devices/i9300/i9300.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/samsung-ipc/devices/i9300/i9300.c b/samsung-ipc/devices/i9300/i9300.c
index f7da6f8..85709a8 100644
--- a/samsung-ipc/devices/i9300/i9300.c
+++ b/samsung-ipc/devices/i9300/i9300.c
@@ -25,11 +25,11 @@
#include <samsung-ipc.h>
-#include "i9300.h"
#include "ipc.h"
-#include "xmm626.h"
-#include "xmm626_hsic.h"
-#include "xmm626_kernel_smdk4412.h"
+#include "devices/i9300/i9300.h"
+#include "modems/xmm626/xmm626.h"
+#include "modems/xmm626/xmm626_hsic.h"
+#include "modems/xmm626/xmm626_kernel_smdk4412.h"
int i9300_boot(struct ipc_client *client)
{