Skip to content

Commit ff2fb90

Browse files
fix function name mismatch between call and declaration
1 parent 1aad399 commit ff2fb90

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ports/atmel-samd/common-hal/spitarget/SPITarget.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ bool common_hal_spitarget_spi_target_deinited(spitarget_spi_target_obj_t *self)
163163
}
164164

165165
void common_hal_spitarget_spi_target_deinit(spitarget_spi_target_obj_t *self) {
166-
if (common_hal_busio_spi_deinited(self)) {
166+
if (common_hal_spitarget_spi_target_deinited(self)) {
167167
return;
168168
}
169169
allow_reset_sercom(self->spi_desc.dev.prvt);

0 commit comments

Comments
 (0)