intf: Refactoring. Remove unused sendrsp()

The sendrsp() callback is never ever called from anywhere.
Remove it from interface structure.
This commit is contained in:
Alexander Amelkin
2018-07-27 17:22:31 +03:00
parent 3aade24297
commit 72b4b25b05
2 changed files with 0 additions and 39 deletions

View File

@ -201,7 +201,6 @@ struct ipmi_intf {
int (*open)(struct ipmi_intf * intf);
void (*close)(struct ipmi_intf * intf);
struct ipmi_rs *(*sendrecv)(struct ipmi_intf * intf, struct ipmi_rq * req);
int (*sendrsp)(struct ipmi_intf * intf, struct ipmi_rs * rsp);
struct ipmi_rs *(*recv_sol)(struct ipmi_intf * intf);
struct ipmi_rs *(*send_sol)(struct ipmi_intf * intf, struct ipmi_v2_payload * payload);
int (*keepalive)(struct ipmi_intf * intf);