Fix up coding style.

This commit is contained in:
László Monda
2017-04-15 00:58:46 +02:00
parent 99b85059d3
commit 6c8bcfaffc

View File

@@ -3,16 +3,14 @@
#include "packet/serial_packet.h" #include "packet/serial_packet.h"
enum _command_state enum _command_state {
{
kCommandState_CommandPhase, kCommandState_CommandPhase,
kCommandState_DataPhase, kCommandState_DataPhase,
kCommandState_DataPhaseRead, kCommandState_DataPhaseRead,
kCommandState_DataPhaseWrite kCommandState_DataPhaseWrite
}; };
typedef enum _buspal_state typedef enum _buspal_state {
{
kBuspal_Idle, kBuspal_Idle,
kBuspal_I2c, kBuspal_I2c,
} buspal_state_t; } buspal_state_t;