aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/ti/sn65dsi86bridge/sn65dsi86bridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/ti/sn65dsi86bridge/sn65dsi86bridge.c b/src/drivers/ti/sn65dsi86bridge/sn65dsi86bridge.c
index 44a80884aa..ca41cdbd76 100644
--- a/src/drivers/ti/sn65dsi86bridge/sn65dsi86bridge.c
+++ b/src/drivers/ti/sn65dsi86bridge/sn65dsi86bridge.c
@@ -10,8 +10,8 @@
#include <soc/addressmap.h>
#include "sn65dsi86bridge.h"
-#define BRIDGE_GETHIGHERBYTE(x) (uint8_t)((x & 0xff00) >> 8)
-#define BRIDGE_GETLOWERBYTE(x) (uint8_t)((x & 0x00ff))
+#define BRIDGE_GETHIGHERBYTE(x) ((uint8_t)((x & 0xff00) >> 8))
+#define BRIDGE_GETLOWERBYTE(x) ((uint8_t)(x & 0x00ff))
/* fudge factor required to account for 8b/10b encoding */
#define DP_CLK_FUDGE_NUM 10