Skip to content

Commit b08c752

Browse files
Keyur HariyaKeyur Hariya
authored andcommitted
Fix indentation
1 parent 16d3889 commit b08c752

File tree

1 file changed

+1
-1
lines changed
  • targets/TARGET_Maxim/TARGET_MAX32630

1 file changed

+1
-1
lines changed

targets/TARGET_Maxim/TARGET_MAX32630/spi_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ int spi_master_block_write(spi_t *obj, const char *tx_buffer, int tx_length, cha
201201
req.rx_data = (uint8_t *)(rx_buffer + tx_length);
202202
req.len = rx_length - tx_length;
203203
SPIM_Trans(obj->spi, &req);
204-
}
204+
}
205205
} else {
206206
req.tx_data = (uint8_t *)tx_buffer;
207207
req.rx_data = (rx_length > 0) ? (uint8_t *)rx_buffer : NULL;

0 commit comments

Comments
 (0)