diff options
Diffstat (limited to 'samsung-ipc/devices/piranha/piranha.c')
-rw-r--r-- | samsung-ipc/devices/piranha/piranha.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/samsung-ipc/devices/piranha/piranha.c b/samsung-ipc/devices/piranha/piranha.c index 3ec4e5c..b3df61d 100644 --- a/samsung-ipc/devices/piranha/piranha.c +++ b/samsung-ipc/devices/piranha/piranha.c @@ -271,6 +271,16 @@ int piranha_power_off(void *data) return 0; } +int piranha_gprs_activate(void *data, unsigned int cid) +{ + return 0; +} + +int piranha_gprs_deactivate(void *data, unsigned int cid) +{ + return 0; +} + int piranha_data_create(void **transport_data, void **power_data, void **gprs_data) { @@ -315,8 +325,8 @@ struct ipc_client_handlers piranha_handlers = { .power_on = piranha_power_on, .power_off = piranha_power_off, .power_data = NULL, - .gprs_activate = NULL, - .gprs_deactivate = NULL, + .gprs_activate = piranha_gprs_activate, + .gprs_deactivate = piranha_gprs_deactivate, .gprs_data = NULL, .data_create = piranha_data_create, .data_destroy = piranha_data_destroy, |