It should not longer be used from outside of IPC code. --- android/ipc.c | 2 +- android/ipc.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/android/ipc.c b/android/ipc.c index 83c2221..64b0db5 100644 --- a/android/ipc.c +++ b/android/ipc.c @@ -51,7 +51,7 @@ void ipc_cleanup(void) notif_sk = -1; } -void ipc_send(int sk, uint8_t service_id, uint8_t opcode, uint16_t len, +static void ipc_send(int sk, uint8_t service_id, uint8_t opcode, uint16_t len, void *param, int fd) { struct msghdr msg; diff --git a/android/ipc.h b/android/ipc.h index ce0e0b1..f66c9e0 100644 --- a/android/ipc.h +++ b/android/ipc.h @@ -24,8 +24,6 @@ void ipc_init(int command_sk, int notification_sk); void ipc_cleanup(void); -void ipc_send(int sk, uint8_t service_id, uint8_t opcode, uint16_t len, - void *param, int fd); void ipc_send_rsp(uint8_t service_id, uint8_t opcode, uint8_t status); void ipc_send_rsp_full(uint8_t service_id, uint8_t opcode, uint16_t len, void *param, int fd); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html