# HG changeset patch # User nickg # Date 1234257528 0 # Node ID 70c6da0cc7934cec8a7aba0e995532ea811fa6da # Parent d4c7c6b285b6bd96df72d351f2a6834822c23479 * src/spi_stm32.c (bus3_setup): Fix typo. diff --git a/packages/devs/spi/cortexm/stm32/current/ChangeLog b/packages/devs/spi/cortexm/stm32/current/ChangeLog --- a/packages/devs/spi/cortexm/stm32/current/ChangeLog +++ b/packages/devs/spi/cortexm/stm32/current/ChangeLog @@ -1,3 +1,7 @@ +2009-02-10 Nick Garnett + + * src/spi_stm32.c (bus3_setup): Fix typo. + 2009-02-05 Nick Garnett * include/spi_stm32.h: Add macro to define an STM32 SPI device. diff --git a/packages/devs/spi/cortexm/stm32/current/src/spi_stm32.c b/packages/devs/spi/cortexm/stm32/current/src/spi_stm32.c --- a/packages/devs/spi/cortexm/stm32/current/src/spi_stm32.c +++ b/packages/devs/spi/cortexm/stm32/current/src/spi_stm32.c @@ -206,7 +206,7 @@ static const cyg_spi_cortexm_stm32_bus_s .spi_reg_base = CYGHWR_HAL_STM32_SPI3, .dma_reg_base = CYGHWR_HAL_STM32_DMA2, .dma_tx_channel = 2, - .dma_rx_channel = 1 + .dma_rx_channel = 1, .cs_gpio_num = sizeof (bus3_cs_gpio_list), .cs_gpio_list = bus3_cs_gpio_list, .spi_gpio_list = bus3_spi_gpio_list,