Kill some unused code in ustcomm.c
authorNils Carlson <nils.carlson@ericsson.com>
Thu, 4 Nov 2010 16:15:10 +0000 (17:15 +0100)
committerNils Carlson <nils.carlson@ericsson.com>
Tue, 9 Nov 2010 15:36:47 +0000 (16:36 +0100)
Signed-off-by: Nils Carlson<nils.carlson@ericsson.com>
Acked-by: David Goulet <david.goulet@polymtl.ca>
libustcomm/ustcomm.c
libustcomm/ustcomm.h

index 2c547abeb0039d7627da808a23e52df565a34148..fe8fea2d66c2c46b8fd30252c3357fba443cb95e 100644 (file)
@@ -775,52 +775,3 @@ int ustcomm_unpack_sock_path(struct ustcomm_sock_path *sock_path_inf)
        return 0;
 }
 
-int ustcomm_send_ch_req(int sock, char *channel, int command,
-                       struct ustcomm_header *recv_header,
-                       char *recv_data)
-{
-       struct ustcomm_header send_header;
-       struct ustcomm_channel_info ch_info;
-       int result;
-
-       result = ustcomm_pack_channel_info(&send_header,
-                                          &ch_info,
-                                          channel);
-       if (result < 0) {
-               return result;
-       }
-
-       send_header.command = command;
-
-       return ustcomm_req(sock,
-                          &send_header,
-                          (char *)&ch_info,
-                          recv_header,
-                          recv_data);
-}
-
-int ustcomm_send_buf_req(int sock, char *channel, int ch_cpu,
-                        int command,
-                        struct ustcomm_header *recv_header,
-                        char *recv_data)
-{
-       struct ustcomm_header send_header;
-       struct ustcomm_buffer_info buf_info;
-       int result;
-
-       result = ustcomm_pack_buffer_info(&send_header,
-                                         &buf_info,
-                                         channel,
-                                         ch_cpu);
-       if (result < 0) {
-               return result;
-       }
-
-       send_header.command = command;
-
-       return ustcomm_req(sock,
-                          &send_header,
-                          (char *)&buf_info,
-                          recv_header,
-                          recv_data);
-}
index f62250c88587ec2164f062f9ae8c7b78dd105be1..4c2e7cd02cd01add64faa2da30a1b32f2e7160bc 100644 (file)
@@ -199,14 +199,4 @@ extern int ustcomm_pack_sock_path(struct ustcomm_header *header,
 
 extern int ustcomm_unpack_sock_path(struct ustcomm_sock_path *sock_path_inf);
 
-/* Packing and requesting functions */
-extern int ustcomm_send_ch_req(int sock, char *channel, int command,
-                              struct ustcomm_header *recv_header,
-                              char *recv_data);
-
-extern int ustcomm_send_buf_req(int sock, char *channel, int ch_cpu,
-                               int command,
-                               struct ustcomm_header *recv_header,
-                               char *recv_data);
-
 #endif /* USTCOMM_H */
This page took 0.024639 seconds and 4 git commands to generate.