diff options
Diffstat (limited to 'samsung-ipc/devices/n7100/n7100.c')
-rw-r--r-- | samsung-ipc/devices/n7100/n7100.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/samsung-ipc/devices/n7100/n7100.c b/samsung-ipc/devices/n7100/n7100.c index a85ffe2..cc3c73b 100644 --- a/samsung-ipc/devices/n7100/n7100.c +++ b/samsung-ipc/devices/n7100/n7100.c @@ -323,6 +323,16 @@ int n7100_power_off(void *data) return 0; } +int n7100_gprs_activate(void *data, unsigned int cid) +{ + return 0; +} + +int n7100_gprs_deactivate(void *data, unsigned int cid) +{ + return 0; +} + int n7100_data_create(void **transport_data, void **power_data, void **gprs_data) { @@ -367,8 +377,8 @@ struct ipc_client_handlers n7100_handlers = { .power_on = n7100_power_on, .power_off = n7100_power_off, .power_data = NULL, - .gprs_activate = NULL, - .gprs_deactivate = NULL, + .gprs_activate = n7100_gprs_activate, + .gprs_deactivate = n7100_gprs_deactivate, .gprs_data = NULL, .data_create = n7100_data_create, .data_destroy = n7100_data_destroy, |