Kinsey Moore commented on a discussion on bsps/arm/stm32h7/spi/spi-support.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/294#note_114420

 > +      DMA_PERIPH_TO_MEMORY,
 > +      DMA_PRIORITY_HIGH
 > +    );
 > +    if (ctx->spi.hdmatx == NULL || ctx->spi.hdmarx == NULL) {
 > +      if (ctx->spi.hdmatx != NULL) {
 > +        stm32h7_dma_free(ctx->spi.hdmatx);
 > +        ctx->spi.hdmatx = NULL;
 > +      }
 > +      if (ctx->spi.hdmarx != NULL) {
 > +        stm32h7_dma_free(ctx->spi.hdmarx);
 > +        ctx->spi.hdmarx = NULL;
 > +      }
 > +    }
 > +  }
 > +#endif
 > +  if (ctx->spi.hdmatx == NULL) {

Fixed in the latest push.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/294#note_114420
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
bugs@rtems.org
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to