This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: v4l: dvb-frontends: stb0899: fix comparison to bitshift when 
dealing with a mask
Author:  Wolfram Sang <wsa+rene...@sang-engineering.com>
Date:    Mon Feb 5 15:10:00 2018 -0500

Due to a typo, the mask was destroyed by a comparison instead of a bit
shift.

Signed-off-by: Wolfram Sang <wsa+rene...@sang-engineering.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>

 drivers/media/dvb-frontends/stb0899_reg.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

---

diff --git a/drivers/media/dvb-frontends/stb0899_reg.h 
b/drivers/media/dvb-frontends/stb0899_reg.h
index ba1ed56304a0..f564269249a6 100644
--- a/drivers/media/dvb-frontends/stb0899_reg.h
+++ b/drivers/media/dvb-frontends/stb0899_reg.h
@@ -374,22 +374,22 @@
 
 #define STB0899_OFF0_IF_AGC_GAIN               0xf30c
 #define STB0899_BASE_IF_AGC_GAIN               0x00000000
-#define STB0899_IF_AGC_GAIN                    (0x3fff < 0)
+#define STB0899_IF_AGC_GAIN                    (0x3fff << 0)
 #define STB0899_OFFST_IF_AGC_GAIN              0
 #define STB0899_WIDTH_IF_AGC_GAIN              14
 
 #define STB0899_OFF0_BB_AGC_GAIN               0xf310
 #define STB0899_BASE_BB_AGC_GAIN               0x00000000
-#define STB0899_BB_AGC_GAIN                    (0x3fff < 0)
+#define STB0899_BB_AGC_GAIN                    (0x3fff << 0)
 #define STB0899_OFFST_BB_AGC_GAIN              0
 #define STB0899_WIDTH_BB_AGC_GAIN              14
 
 #define STB0899_OFF0_DC_OFFSET                 0xf314
 #define STB0899_BASE_DC_OFFSET                 0x00000000
-#define STB0899_I                              (0xff < 8)
+#define STB0899_I                              (0xff << 8)
 #define STB0899_OFFST_I                                8
 #define STB0899_WIDTH_I                                8
-#define STB0899_Q                              (0xff < 0)
+#define STB0899_Q                              (0xff << 0)
 #define STB0899_OFFST_Q                                8
 #define STB0899_WIDTH_Q                                8
 

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to