aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/devices/maguro/maguro.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-07-29 12:57:49 +0200
committerPaul Kocialkowski <contact@paulk.fr>2014-07-29 12:57:49 +0200
commit8d0b0f65e5a90b7387d1419eff35cec5602fee79 (patch)
treee700d2e5b6cc3ba33cf26ad6aed56bb7f09fadad /samsung-ipc/devices/maguro/maguro.c
parenta7ae7393c60c7345fbf0e9de1b656493bbff1731 (diff)
downloadexternal_libsamsung-ipc-8d0b0f65e5a90b7387d1419eff35cec5602fee79.zip
external_libsamsung-ipc-8d0b0f65e5a90b7387d1419eff35cec5602fee79.tar.gz
external_libsamsung-ipc-8d0b0f65e5a90b7387d1419eff35cec5602fee79.tar.bz2
Missing gprs_activate/deactivate handlers definitions
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'samsung-ipc/devices/maguro/maguro.c')
-rw-r--r--samsung-ipc/devices/maguro/maguro.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/samsung-ipc/devices/maguro/maguro.c b/samsung-ipc/devices/maguro/maguro.c
index aee8f75..dcc1bf3 100644
--- a/samsung-ipc/devices/maguro/maguro.c
+++ b/samsung-ipc/devices/maguro/maguro.c
@@ -304,6 +304,16 @@ int maguro_power_off(void *data)
return 0;
}
+int maguro_gprs_activate(void *data, unsigned int cid)
+{
+ return 0;
+}
+
+int maguro_gprs_deactivate(void *data, unsigned int cid)
+{
+ return 0;
+}
+
int maguro_data_create(void **transport_data, void **power_data,
void **gprs_data)
{
@@ -348,8 +358,8 @@ struct ipc_client_handlers maguro_handlers = {
.power_on = maguro_power_on,
.power_off = maguro_power_off,
.power_data = NULL,
- .gprs_activate = NULL,
- .gprs_deactivate = NULL,
+ .gprs_activate = maguro_gprs_activate,
+ .gprs_deactivate = maguro_gprs_deactivate,
.gprs_data = NULL,
.data_create = maguro_data_create,
.data_destroy = maguro_data_destroy,