diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-01-08 22:04:46 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-01-08 22:04:46 +0000 |
commit | 725e8f6aa5035529011560212e1a92d8f9b2ab38 (patch) | |
tree | d26b0e3c78a86376857fdeef9674d4c069ff292b /os/hal/platforms/STM32L1xx | |
parent | 4817e5d8143b362981684de9225bcc0805d2bb0d (diff) | |
download | ChibiOS-725e8f6aa5035529011560212e1a92d8f9b2ab38.tar.gz ChibiOS-725e8f6aa5035529011560212e1a92d8f9b2ab38.tar.bz2 ChibiOS-725e8f6aa5035529011560212e1a92d8f9b2ab38.zip |
Reverted to 3771 revision.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3773 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32L1xx')
-rw-r--r-- | os/hal/platforms/STM32L1xx/stm32_dma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32L1xx/stm32_dma.h b/os/hal/platforms/STM32L1xx/stm32_dma.h index 7bc6362b0..6afadfcc1 100644 --- a/os/hal/platforms/STM32L1xx/stm32_dma.h +++ b/os/hal/platforms/STM32L1xx/stm32_dma.h @@ -137,7 +137,7 @@ #define STM32_DMA_CR_SIZE_MASK (STM32_DMA_CR_MSIZE_MASK | \
STM32_DMA_CR_MSIZE_MASK)
#define STM32_DMA_CR_PL_MASK DMA_CCR1_PL
-#define STM32_DMA_CR_PL(n) (((n) << 12) & (STM32_DMA_CR_PL_MASK))
+#define STM32_DMA_CR_PL(n) ((n) << 12)
/** @} */
/**
|