From 4549f8587d548815422337632ba7b049bd05c678 Mon Sep 17 00:00:00 2001 From: enriquezgarc Date: Fri, 19 Jul 2024 12:25:58 +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 34fa3f5337b7..70b887774741 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); + self->dat2, self->dat3, NC, NC, NC, NC, self->cd, NC, NC, NC, NC, NC, &clock_source); return result; }