aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-09-12 22:40:56 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-09-12 22:40:56 +0200
commit67bc091b45f32064db3f0d67618fe7efa5cd2511 (patch)
treecaced1e5a443540ae20748f7365c01cefa38fef4
parentdfd1487b7f2366e505fc029de971af8bb0b6a869 (diff)
downloadhardware_replicant_libsamsung-ipc-67bc091b45f32064db3f0d67618fe7efa5cd2511.tar.gz
hardware_replicant_libsamsung-ipc-67bc091b45f32064db3f0d67618fe7efa5cd2511.tar.bz2
hardware_replicant_libsamsung-ipc-67bc091b45f32064db3f0d67618fe7efa5cd2511.zip
fix XMM626_SEC_MODEM_LINK_PM_DEVICE
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--samsung-ipc/devices/galaxys2/galaxys2.c2
-rw-r--r--samsung-ipc/devices/i9300/i9300.c2
-rw-r--r--samsung-ipc/devices/n5100/n5100.c2
-rw-r--r--samsung-ipc/devices/n7100/n7100.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/samsung-ipc/devices/galaxys2/galaxys2.c b/samsung-ipc/devices/galaxys2/galaxys2.c
index 547b33b..c7712b8 100644
--- a/samsung-ipc/devices/galaxys2/galaxys2.c
+++ b/samsung-ipc/devices/galaxys2/galaxys2.c
@@ -67,7 +67,7 @@ int galaxys2_boot(struct ipc_client *client)
}
ipc_client_log(client, "Opened modem boot device");
- modem_link_fd = open(XMM626_SEC_MODEM_LINK_PM_DEVICE, O_RDWR);
+ modem_link_fd = open(XMM626_KERNEL_SAMSUNG_SMDK4412_LINK_PM_DEVICE, O_RDWR);
if (modem_link_fd < 0) {
ipc_client_log(client, "Opening modem link device failed");
goto error;
diff --git a/samsung-ipc/devices/i9300/i9300.c b/samsung-ipc/devices/i9300/i9300.c
index ad0e4b2..513e291 100644
--- a/samsung-ipc/devices/i9300/i9300.c
+++ b/samsung-ipc/devices/i9300/i9300.c
@@ -67,7 +67,7 @@ int i9300_boot(struct ipc_client *client)
}
ipc_client_log(client, "Opened modem boot device");
- modem_link_fd = open(XMM626_SEC_MODEM_LINK_PM_DEVICE, O_RDWR);
+ modem_link_fd = open(XMM626_KERNEL_SAMSUNG_SMDK4412_LINK_PM_DEVICE, O_RDWR);
if (modem_link_fd < 0) {
ipc_client_log(client, "Opening modem link device failed");
goto error;
diff --git a/samsung-ipc/devices/n5100/n5100.c b/samsung-ipc/devices/n5100/n5100.c
index b50e1d2..bd814bb 100644
--- a/samsung-ipc/devices/n5100/n5100.c
+++ b/samsung-ipc/devices/n5100/n5100.c
@@ -68,7 +68,7 @@ int n5100_boot(struct ipc_client *client)
}
ipc_client_log(client, "Opened modem boot device");
- modem_link_fd = open(XMM626_SEC_MODEM_LINK_PM_DEVICE, O_RDWR);
+ modem_link_fd = open(XMM626_KERNEL_SAMSUNG_SMDK4412_LINK_PM_DEVICE, O_RDWR);
if (modem_link_fd < 0) {
ipc_client_log(client, "Opening modem link device failed");
goto error;
diff --git a/samsung-ipc/devices/n7100/n7100.c b/samsung-ipc/devices/n7100/n7100.c
index a4f0e3b..2b892cf 100644
--- a/samsung-ipc/devices/n7100/n7100.c
+++ b/samsung-ipc/devices/n7100/n7100.c
@@ -67,7 +67,7 @@ int n7100_boot(struct ipc_client *client)
}
ipc_client_log(client, "Opened modem boot device");
- modem_link_fd = open(XMM626_SEC_MODEM_LINK_PM_DEVICE, O_RDWR);
+ modem_link_fd = open(XMM626_KERNEL_SAMSUNG_SMDK4412_LINK_PM_DEVICE, O_RDWR);
if (modem_link_fd < 0) {
ipc_client_log(client, "Opening modem link device failed");
goto error;