aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-09-12 22:41:50 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-09-12 22:41:50 +0200
commite77382a697dc4bc44382f2327496bb4be0d68493 (patch)
treead493214baf9fdd334d87a7e5bf42d75b8265ae2
parent67bc091b45f32064db3f0d67618fe7efa5cd2511 (diff)
downloadhardware_replicant_libsamsung-ipc-e77382a697dc4bc44382f2327496bb4be0d68493.tar.gz
hardware_replicant_libsamsung-ipc-e77382a697dc4bc44382f2327496bb4be0d68493.tar.bz2
hardware_replicant_libsamsung-ipc-e77382a697dc4bc44382f2327496bb4be0d68493.zip
fix XMM626_SEC_MODEM_BOOT1_DEVICE
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--samsung-ipc/devices/maguro/maguro.c2
-rw-r--r--samsung-ipc/devices/piranha/piranha.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/samsung-ipc/devices/maguro/maguro.c b/samsung-ipc/devices/maguro/maguro.c
index 0cbd30f..1e9ac8f 100644
--- a/samsung-ipc/devices/maguro/maguro.c
+++ b/samsung-ipc/devices/maguro/maguro.c
@@ -93,7 +93,7 @@ int maguro_boot(struct ipc_client *client)
close(modem_boot_fd);
- modem_boot_fd = open(XMM626_SEC_MODEM_BOOT1_DEVICE, O_RDWR | O_NOCTTY | O_NONBLOCK);
+ modem_boot_fd = open(XMM626_KERNEL_SAMSUNG_SMDK4412_BOOT1_DEVICE, O_RDWR | O_NOCTTY | O_NONBLOCK);
if (modem_boot_fd < 0) {
ipc_client_log(client, "Opening modem boot device failed");
goto error;
diff --git a/samsung-ipc/devices/piranha/piranha.c b/samsung-ipc/devices/piranha/piranha.c
index d656088..35698da 100644
--- a/samsung-ipc/devices/piranha/piranha.c
+++ b/samsung-ipc/devices/piranha/piranha.c
@@ -91,7 +91,7 @@ int piranha_boot(struct ipc_client *client)
close(modem_boot_fd);
- modem_boot_fd = open(XMM626_SEC_MODEM_BOOT1_DEVICE, O_RDWR | O_NOCTTY | O_NONBLOCK);
+ modem_boot_fd = open(XMM626_KERNEL_SAMSUNG_SMDK4412_BOOT1_DEVICE, O_RDWR | O_NOCTTY | O_NONBLOCK);
if (modem_boot_fd < 0) {
ipc_client_log(client, "Opening modem boot device failed");
goto error;