From fd62733d799d088616e2543aade7b582b42cac9c Mon Sep 17 00:00:00 2001 From: enriquezgarc Date: Fri, 19 Jul 2024 12:35:50 +0200 Subject: [PATCH] ports/psoc6/machine_sdcard.c: Fixed uncompleted rebase. Signed-off-by: enriquezgarc --- ports/psoc6/machine_sdcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/psoc6/machine_sdcard.c b/ports/psoc6/machine_sdcard.c index 70b887774741..ca5a1a8102f2 100644 --- a/ports/psoc6/machine_sdcard.c +++ b/ports/psoc6/machine_sdcard.c @@ -166,7 +166,7 @@ static cy_rslt_t sd_card_init_helper(machine_sdcard_obj_t *self, mp_arg_val_t *a sd_card_allocate_pin(self, args); result = cyhal_sdhc_init(&self->sdhc_obj, &sdhc_config, self->cmd, self->clk, self->dat0, self->dat1, - self->dat2, self->dat3, NC, NC, NC, NC, self->cd, NC, NC, NC, NC, NC, &clock_source); + self->dat2, self->dat3, NC, NC, NC, NC, self->cd, NC, NC, NC, NC, NC, clock_source); return result; }