From 8d0b0f65e5a90b7387d1419eff35cec5602fee79 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Tue, 29 Jul 2014 12:57:49 +0200 Subject: Missing gprs_activate/deactivate handlers definitions Signed-off-by: Paul Kocialkowski --- samsung-ipc/devices/n7100/n7100.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'samsung-ipc/devices/n7100') 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, -- cgit v1.1