diff options
author | PaulK <contact@paulk.fr> | 2012-02-03 20:21:36 +0100 |
---|---|---|
committer | PaulK <contact@paulk.fr> | 2012-02-03 20:21:36 +0100 |
commit | 1789f2ac0766851f078c754fe31cb87a6f013184 (patch) | |
tree | eff2fb521bcaea6b67771e95cb3849e4fd156761 /include | |
parent | a1de0dcad9e1bcf8d9293eefb601b05a18fc7c9b (diff) | |
download | external_libsamsung-ipc-1789f2ac0766851f078c754fe31cb87a6f013184.zip external_libsamsung-ipc-1789f2ac0766851f078c754fe31cb87a6f013184.tar.gz external_libsamsung-ipc-1789f2ac0766851f078c754fe31cb87a6f013184.tar.bz2 |
Modified ipc devices handling to use a table and permit explicit device name
Diffstat (limited to 'include')
-rw-r--r-- | include/radio.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/radio.h b/include/radio.h index 4c14d79..3cd8834 100644 --- a/include/radio.h +++ b/include/radio.h @@ -29,11 +29,6 @@ #define IPC_CLIENT_TYPE_FMT 0 #define IPC_CLIENT_TYPE_RFS 1 -#define IPC_DEVICE_CRESPO 0 -#define IPC_DEVICE_ARIES 1 - -#define IPC_DEVICE_MAX IPC_DEVICE_ARIES - #define IPC_COMMAND(f) ((f->group << 8) | f->index) #define IPC_GROUP(m) (m >> 8) #define IPC_INDEX(m) (m & 0xff) @@ -57,11 +52,6 @@ struct ipc_message_info { struct ipc_client; struct ipc_handlers; -extern struct ipc_handlers ipc_default_handlers; - -void ipc_init(void); -void ipc_shutdown(void); - typedef void (*ipc_client_log_handler_cb)(const char *message, void *user_data); typedef int (*ipc_io_handler_cb)(void *data, unsigned int size, void *io_data); |