aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2012-08-08 16:05:34 +0200
committerSimon Busch <morphis@gravedo.de>2012-08-08 16:05:34 +0200
commitb44ee66d247cfa523469ebd144a07b79762702ca (patch)
tree712f624cd617c759f640eb3e30ce34305ecf0db6 /include
parent7a9ad8c635c3cc8993aaa4c1509eea8745d56069 (diff)
downloadhardware_replicant_libsamsung-ipc-b44ee66d247cfa523469ebd144a07b79762702ca.tar.gz
hardware_replicant_libsamsung-ipc-b44ee66d247cfa523469ebd144a07b79762702ca.tar.bz2
hardware_replicant_libsamsung-ipc-b44ee66d247cfa523469ebd144a07b79762702ca.zip
Prefix method correctly with ipc_client_
Diffstat (limited to 'include')
-rw-r--r--include/radio.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/radio.h b/include/radio.h
index 399cdf2..7a3ccf4 100644
--- a/include/radio.h
+++ b/include/radio.h
@@ -71,6 +71,7 @@ int ipc_client_set_handlers(struct ipc_client *client, struct ipc_handlers *hand
int ipc_client_set_io_handlers(struct ipc_client *client,
ipc_io_handler_cb read, void *read_data,
ipc_io_handler_cb write, void *write_data);
+
int ipc_client_set_handlers_common_data(struct ipc_client *client, void *data);
void *ipc_client_get_handlers_common_data(struct ipc_client *client);
int ipc_client_create_handlers_common_data(struct ipc_client *client);
@@ -105,9 +106,10 @@ void ipc_client_log_send(struct ipc_client *client,
const char *ipc_response_type_to_str(int type);
const char *ipc_request_type_to_str(int type);
const char *ipc_command_to_str(int command);
-void ipc_hex_dump(struct ipc_client *client, void *data, int size);
-void *ipc_mtd_read(struct ipc_client *client, char *mtd_name, int size, int block_size);
-void *ipc_file_read(struct ipc_client *client, char *file_name, int size, int block_size);
+
+void ipc_client_hex_dump(struct ipc_client *client, void *data, int size);
+void *ipc_client_mtd_read(struct ipc_client *client, char *mtd_name, int size, int block_size);
+void *ipc_client_file_read(struct ipc_client *client, char *file_name, int size, int block_size);
#endif