diff --git a/include/ChangeLog b/include/ChangeLog index 6c6c3f20..1d3b2fef 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,6 +1,11 @@ +2003-01-31 Marcel Telka + + * arm/pxa2x0/dma.h (DCSR_BUSERRINTR): Fixed typo in macro name (patch 678112). + Thanks to Daniel Samek. + 2003-01-27 Marcel Telka - * arm/pxa2x0/dma.c (get_DRCMR_CHLNUM): Fixed a typo. + * arm/pxa2x0/dma.h (get_DRCMR_CHLNUM): Fixed a typo. 2003-01-27 Marcel Telka diff --git a/include/NEWS b/include/NEWS index 4413af51..e88808b0 100644 --- a/include/NEWS +++ b/include/NEWS @@ -11,6 +11,7 @@ $Id$ - added get_* macros for DMA register bits - added symbolic names and offsets for DRCMR registers (suggested by Daniel Samek, patch 675417) + - fixed typo in DCSR_BUSERRINTR macro name (patch 678112, Daniel Samek) * Added UCB1400_ADCC_AI_* declarations for UCB1400 (suggested by Juraj Fabo) * Moved ac97.h and ucb1400.h files to device/codec directory * Minor fixes. diff --git a/include/arm/pxa2x0/dma.h b/include/arm/pxa2x0/dma.h index c40ebeeb..8bd69e57 100644 --- a/include/arm/pxa2x0/dma.h +++ b/include/arm/pxa2x0/dma.h @@ -203,7 +203,7 @@ typedef volatile struct DMA_registers { #define DCSR_STOPSTATE bit(3) #define DCSR_ENDINTR bit(2) #define DCSR_STARTINTR bit(1) -#define DSCR_BUSERRINTR bit(0) +#define DCSR_BUSERRINTR bit(0) /* DINT bits - see Table 5-6 in [1], Table 5-6 in [2] */