Skip to content

Commit 9f925ba

Browse files
committed
Fix the merge mess
1 parent 23d3833 commit 9f925ba

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

board/safety/safety_defaults.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const safety_hooks nooutput_hooks = {
2626
.rx = default_rx_hook,
2727
.tx = nooutput_tx_hook,
2828
.tx_lin = nooutput_tx_lin_hook,
29-
.ignition = nooutput_ign_hook
29+
.ignition = nooutput_ign_hook,
3030
.fwd = nooutput_fwd_hook,
3131
};
3232

@@ -45,7 +45,7 @@ static int alloutput_tx_lin_hook(int lin_num, uint8_t *data, int len) {
4545
}
4646

4747
static int alloutput_ign_hook() {
48-
return -1
48+
return -1;
4949
}
5050

5151
static int alloutput_fwd_hook(int bus_num, CAN_FIFOMailBox_TypeDef *to_fwd) {
@@ -57,7 +57,7 @@ const safety_hooks alloutput_hooks = {
5757
.rx = default_rx_hook,
5858
.tx = alloutput_tx_hook,
5959
.tx_lin = alloutput_tx_lin_hook,
60-
.ignition = alloutput_ign_hook
60+
.ignition = alloutput_ign_hook,
6161
.fwd = alloutput_fwd_hook,
6262
};
6363

board/safety/safety_elm327.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ const safety_hooks elm327_hooks = {
4444
.rx = elm327_rx_hook,
4545
.tx = elm327_tx_hook,
4646
.tx_lin = elm327_tx_lin_hook,
47-
.ignition = elm327_ign_hook
47+
.ignition = elm327_ign_hook,
4848
.fwd = elm327_fwd_hook,
4949
};

board/safety/safety_gm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ const safety_hooks gm_hooks = {
193193
.rx = gm_rx_hook,
194194
.tx = gm_tx_hook,
195195
.tx_lin = gm_tx_lin_hook,
196-
.ignition = gm_ign_hook
196+
.ignition = gm_ign_hook,
197197
.fwd = gm_fwd_hook,
198198
};
199199

board/safety/safety_honda.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ const safety_hooks honda_hooks = {
143143
.rx = honda_rx_hook,
144144
.tx = honda_tx_hook,
145145
.tx_lin = honda_tx_lin_hook,
146-
.ignition = honda_ign_hook
146+
.ignition = honda_ign_hook,
147147
.fwd = honda_fwd_hook,
148148
};
149149

@@ -165,5 +165,6 @@ const safety_hooks honda_bosch_hooks = {
165165
.rx = honda_rx_hook,
166166
.tx = honda_tx_hook,
167167
.tx_lin = honda_tx_lin_hook,
168+
.ignition = honda_ign_hook,
168169
.fwd = honda_bosch_fwd_hook,
169170
};

board/safety/safety_toyota.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ const safety_hooks toyota_hooks = {
220220
.rx = toyota_rx_hook,
221221
.tx = toyota_tx_hook,
222222
.tx_lin = toyota_tx_lin_hook,
223-
.ignition = toyota_ign_hook
223+
.ignition = toyota_ign_hook,
224224
.fwd = toyota_fwd_hook,
225225
};
226226

@@ -235,6 +235,6 @@ const safety_hooks toyota_nolimits_hooks = {
235235
.rx = toyota_rx_hook,
236236
.tx = toyota_tx_hook,
237237
.tx_lin = toyota_tx_lin_hook,
238-
.ignition = toyota_ign_hook
238+
.ignition = toyota_ign_hook,
239239
.fwd = toyota_fwd_hook,
240240
};

0 commit comments

Comments
 (0)