Clean up.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 5 Sep 2011 15:46:10 +0000 (15:46 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 5 Sep 2011 15:46:10 +0000 (15:46 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5018 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/cortex-m3/drv/hsmci_sam3.c

index cfc1c8b6eb4677815ec39bb2f8d797647c435d05..134a972c490d3c88992249562d9d586a21e3b0e6 100644 (file)
@@ -58,17 +58,6 @@ typedef struct DmacDesc
 
 #define HSMCI_CLK_DIV(RATE)     ((CPU_FREQ / (RATE << 1)) - 1)
 
-#define HSMCI_ERROR_MASK   (BV(HSMCI_SR_RINDE)    | \
-                                                       BV(HSMCI_SR_RDIRE)    | \
-                                                       BV(HSMCI_SR_RCRCE)    | \
-                                                       BV(HSMCI_SR_RENDE)    | \
-                                                       BV(HSMCI_SR_RTOE)     | \
-                                                       BV(HSMCI_SR_DCRCE)    | \
-                                                       BV(HSMCI_SR_DTOE)     | \
-                                                       BV(HSMCI_SR_CSTOE)    | \
-                                                       BV(HSMCI_SR_BLKOVRE)  | \
-                                                       BV(HSMCI_SR_ACKRCVE))
-
 
 #define HSMCI_RESP_ERROR_MASK   (BV(HSMCI_SR_RINDE) | BV(HSMCI_SR_RDIRE) \
          | BV(HSMCI_SR_RENDE)| BV(HSMCI_SR_RTOE))
@@ -87,8 +76,6 @@ typedef struct DmacDesc
                cpu_relax(); \
        } while (!(HSMCI_SR & BV(HSMCI_SR_RXRDY)))
 
-#define HSMCI_ERROR()   (HSMCI_SR & HSMCI_ERROR_MASK)
-
 #define HSMCI_HW_INIT()  \
 do { \
        PIOA_PDR = BV(19) | BV(20) | BV(21) | BV(22) | BV(23) | BV(24); \