|
@@ -73,11 +73,11 @@
|
|
|
/* Error detection and correction */
|
|
|
#define ADF_DH895XCC_AE_CTX_ENABLES(i) (i * 0x1000 + 0x20818)
|
|
|
#define ADF_DH895XCC_AE_MISC_CONTROL(i) (i * 0x1000 + 0x20960)
|
|
|
-#define ADF_DH895XCC_ENABLE_AE_ECC_ERR (1 << 28)
|
|
|
-#define ADF_DH895XCC_ENABLE_AE_ECC_PARITY_CORR (1 << 24 | 1 << 12)
|
|
|
+#define ADF_DH895XCC_ENABLE_AE_ECC_ERR BIT(28)
|
|
|
+#define ADF_DH895XCC_ENABLE_AE_ECC_PARITY_CORR (BIT(24) | BIT(12))
|
|
|
#define ADF_DH895XCC_UERRSSMSH(i) (i * 0x4000 + 0x18)
|
|
|
#define ADF_DH895XCC_CERRSSMSH(i) (i * 0x4000 + 0x10)
|
|
|
-#define ADF_DH895XCC_ERRSSMSH_EN (1 << 3)
|
|
|
+#define ADF_DH895XCC_ERRSSMSH_EN BIT(3)
|
|
|
|
|
|
/* Admin Messages Registers */
|
|
|
#define ADF_DH895XCC_ADMINMSGUR_OFFSET (0x3A000 + 0x574)
|