aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Markgraf <steve@steve-m.de>2012-05-28 05:03:53 +0200
committerSteve Markgraf <steve@steve-m.de>2012-05-28 05:03:53 +0200
commit74d9619bc3ef67f560cbb68cc0dd84cf53ae7bf9 (patch)
tree5a3ecc8c4c37088dde837e653d6b92ba2080e73a
parent635b2751afb8032ae94b3a152667ae07004a6074 (diff)
tuner_fc0013: get rid of compiler warning
"this decimal constant is unsigned only in ISO C90" Signed-off-by: Steve Markgraf <steve@steve-m.de>
-rw-r--r--src/tuner_fc0013.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tuner_fc0013.c b/src/tuner_fc0013.c
index a6bd0e5..5423941 100644
--- a/src/tuner_fc0013.c
+++ b/src/tuner_fc0013.c
@@ -305,7 +305,7 @@ int fc0013_set_params(void *dev, uint32_t freq, uint32_t bandwidth)
f_vco = freq * multi;
- if (f_vco >= 3060000000) {
+ if (f_vco >= 3060000000U) {
reg[6] |= 0x08;
vco_select = 1;
}