diff --git a/cpu/cc253x/dev/dma.c b/cpu/cc253x/dev/dma.c index 7b0b57034..8d07e83cf 100644 --- a/cpu/cc253x/dev/dma.c +++ b/cpu/cc253x/dev/dma.c @@ -46,7 +46,7 @@ dma_init(void) DMA1CFGL = tmp_ptr; #endif - IEN1_DMAIE = 1; /* Enable DMA interrupts */ + DMAIE = 1; /* Enable DMA interrupts */ } /*---------------------------------------------------------------------------*/ /* @@ -62,7 +62,7 @@ dma_associate_process(struct process * p, uint8_t c) if(p) { dma_conf[c].inc_prio |= 8; /* Enable interrupt generation */ - IEN1_DMAIE = 1; /* Make sure DMA interrupts are acknowledged */ + DMAIE = 1; /* Make sure DMA interrupts are acknowledged */ } dma_callback[c] = p; }