stm32: stm32f09x has two independent dma controlers, add RCC bits.

This commit is contained in:
Guillaume Revaillot 2018-04-18 13:17:46 +02:00 committed by Karl Palsson
parent 255a594300
commit 54c6c833fe

View File

@ -403,6 +403,8 @@ enum rcc_osc {
enum rcc_periph_clken { enum rcc_periph_clken {
/* AHB peripherals */ /* AHB peripherals */
RCC_DMA = _REG_BIT(0x14, 0), RCC_DMA = _REG_BIT(0x14, 0),
RCC_DMA1 = _REG_BIT(0x14, 0), /* Compatibility alias */
RCC_DMA2 = _REG_BIT(0x14, 1),
RCC_SRAM = _REG_BIT(0x14, 2), RCC_SRAM = _REG_BIT(0x14, 2),
RCC_FLTIF = _REG_BIT(0x14, 4), RCC_FLTIF = _REG_BIT(0x14, 4),
RCC_CRC = _REG_BIT(0x14, 6), RCC_CRC = _REG_BIT(0x14, 6),