Remove whitespace at end of lines, step 1.
[fw/openocd] / src / target / arm_adi_v5.h
index 2015c4d3d882b804ea4a5c3222e922f8886e8add..19e483151ed8cf96865c5889247382e7aeb258a9 100644 (file)
 #define DP_SELECT              0x8
 #define DP_RDBUFF              0xC
 
-#define CORUNDETECT            (1<<0)
-#define SSTICKYORUN            (1<<1)
-#define SSTICKYERR             (1<<5)
-#define CDBGRSTREQ             (1<<26)
-#define CDBGRSTACK             (1<<27)
-#define CDBGPWRUPREQ   (1<<28)
-#define CDBGPWRUPACK   (1<<29)
-#define CSYSPWRUPREQ   (1<<30)
-#define CSYSPWRUPACK   (1<<31)
+#define CORUNDETECT            (1 << 0)
+#define SSTICKYORUN            (1 << 1)
+#define SSTICKYERR             (1 << 5)
+#define CDBGRSTREQ             (1 << 26)
+#define CDBGRSTACK             (1 << 27)
+#define CDBGPWRUPREQ   (1 << 28)
+#define CDBGPWRUPACK   (1 << 29)
+#define CSYSPWRUPREQ   (1 << 30)
+#define CSYSPWRUPACK   (1 << 31)
 
 #define        AP_REG_CSW              0x00
 #define AP_REG_TAR             0x04
 #define CSW_16BIT              1
 #define CSW_32BIT              2
 
-#define CSW_ADDRINC_MASK       (3<<4)
+#define CSW_ADDRINC_MASK       (3 << 4)
 #define CSW_ADDRINC_OFF                0
-#define CSW_ADDRINC_SINGLE     (1<<4)
-#define CSW_ADDRINC_PACKED     (2<<4)
-#define CSW_HPROT                      (1<<25)
-#define CSW_MASTER_DEBUG       (1<<29)
-#define CSW_DBGSWENABLE                (1<<31)
+#define CSW_ADDRINC_SINGLE     (1 << 4)
+#define CSW_ADDRINC_PACKED     (2 << 4)
+#define CSW_HPROT                      (1 << 25)
+#define CSW_MASTER_DEBUG       (1 << 29)
+#define CSW_DBGSWENABLE                (1 << 31)
 
 /* transaction mode */
 #define TRANS_MODE_NONE                        0
@@ -104,10 +104,10 @@ typedef struct swjdp_common_s
 
 } swjdp_common_t;
 
-/* Accessor function for currently selected DAP-AP number */ 
+/* Accessor function for currently selected DAP-AP number */
 static inline uint8_t dap_ap_get_select(swjdp_common_t *swjdp)
 {
-       return (uint8_t)( swjdp ->apsel >> 24);
+       return (uint8_t)(swjdp ->apsel >> 24);
 }
 
 /* Internal functions used in the module, partial transactions, use with caution */