From 2cf8be92eb211d2e6e096fc157485cf713981747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 14 Apr 2017 15:25:25 +0200 Subject: [PATCH] Remove the unused CommandInterface.{init,pump,handlerTable} fields. --- right/src/buspal/command.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/right/src/buspal/command.h b/right/src/buspal/command.h index 82b7521..5417b83 100644 --- a/right/src/buspal/command.h +++ b/right/src/buspal/command.h @@ -40,9 +40,6 @@ typedef struct CommandProcessorData { // Interface to command processor operations. typedef struct CommandInterface { - status_t (*init)(void); - status_t (*pump)(void); - const command_handler_entry_t *handlerTable; command_processor_data_t *stateData; } command_interface_t;