hw/ssi/xilinx_spips.c: Avoid shifting left into sign bit
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 10 Mar 2014 14:56:30 +0000 (14:56 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 10 Mar 2014 14:56:30 +0000 (14:56 +0000)
Add missing 'U' suffix to avoid shifting left into sign bit of
a signed integer.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1392988008-15938-4-git-send-email-peter.maydell@linaro.org

hw/ssi/xilinx_spips.c

index 6a287464bf589a625d6ee7cf6690aa4b0a25cdbb..897724372517b202f06c62c15b382a5bc76d5164 100644 (file)
@@ -43,7 +43,7 @@
 
 /* config register */
 #define R_CONFIG            (0x00 / 4)
-#define IFMODE              (1 << 31)
+#define IFMODE              (1U << 31)
 #define ENDIAN              (1 << 26)
 #define MODEFAIL_GEN_EN     (1 << 17)
 #define MAN_START_COM       (1 << 16)
@@ -87,7 +87,7 @@
 
 #define R_LQSPI_CFG         (0xa0 / 4)
 #define R_LQSPI_CFG_RESET       0x03A002EB
-#define LQSPI_CFG_LQ_MODE       (1 << 31)
+#define LQSPI_CFG_LQ_MODE       (1U << 31)
 #define LQSPI_CFG_TWO_MEM       (1 << 30)
 #define LQSPI_CFG_SEP_BUS       (1 << 30)
 #define LQSPI_CFG_U_PAGE        (1 << 28)