aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/devices/i9300/i9300.c
diff options
context:
space:
mode:
Diffstat (limited to 'samsung-ipc/devices/i9300/i9300.c')
-rw-r--r--samsung-ipc/devices/i9300/i9300.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/samsung-ipc/devices/i9300/i9300.c b/samsung-ipc/devices/i9300/i9300.c
index 9c3611d..fafcbe4 100644
--- a/samsung-ipc/devices/i9300/i9300.c
+++ b/samsung-ipc/devices/i9300/i9300.c
@@ -323,6 +323,16 @@ int i9300_power_off(void *data)
return 0;
}
+int i9300_gprs_activate(void *data, unsigned int cid)
+{
+ return 0;
+}
+
+int i9300_gprs_deactivate(void *data, unsigned int cid)
+{
+ return 0;
+}
+
int i9300_data_create(void **transport_data, void **power_data,
void **gprs_data)
{
@@ -366,8 +376,8 @@ struct ipc_client_handlers i9300_handlers = {
.power_on = i9300_power_on,
.power_off = i9300_power_off,
.power_data = NULL,
- .gprs_activate = NULL,
- .gprs_deactivate = NULL,
+ .gprs_activate = i9300_gprs_activate,
+ .gprs_deactivate = i9300_gprs_deactivate,
.gprs_data = NULL,
.data_create = i9300_data_create,
.data_destroy = i9300_data_destroy,