diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2012-11-11 12:32:40 +0100 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2012-11-11 12:32:40 +0100 |
commit | d9622e4a4bcee8132ff3dfe89beed5399f3bdeb8 (patch) | |
tree | 60054b6342eb04620283cf7a9fcb56963dc5dd2e /samsung-ipc/ipc_private.h | |
parent | f722771a3837793c397d1db5075b8e8bd2906fed (diff) | |
download | external_libsamsung-ipc-d9622e4a4bcee8132ff3dfe89beed5399f3bdeb8.zip external_libsamsung-ipc-d9622e4a4bcee8132ff3dfe89beed5399f3bdeb8.tar.gz external_libsamsung-ipc-d9622e4a4bcee8132ff3dfe89beed5399f3bdeb8.tar.bz2 |
GPRS: Pass CID to activate/deactivate functions
Aries: Use CID to activate/deactivate the corresponding iface
Change-Id: Ifd153eda59404921bc6ea12d27f94d5aee7b06ff
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'samsung-ipc/ipc_private.h')
-rw-r--r-- | samsung-ipc/ipc_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samsung-ipc/ipc_private.h b/samsung-ipc/ipc_private.h index 90a0f7c..406bf9d 100644 --- a/samsung-ipc/ipc_private.h +++ b/samsung-ipc/ipc_private.h @@ -48,9 +48,9 @@ struct ipc_handlers { void *power_off_data; /* GPRS handlers */ - ipc_handler_cb gprs_activate; + int (*gprs_activate)(void *io_data, int cid); void *gprs_activate_data; - ipc_handler_cb gprs_deactivate; + int (*gprs_deactivate)(void *io_data, int cid); void *gprs_deactivate_data; /* Handlers common data*/ |