correct signal strength

This commit is contained in:
Ralph Metzler
2016-03-22 22:43:26 +01:00
committed by mvoelkel
parent b479d9cdc2
commit 906efafd5e
2 changed files with 7 additions and 4 deletions

View File

@@ -707,7 +707,7 @@ static int get_rf_strength(struct dvb_frontend *fe, u16 *st)
else if (Gain > 10000)
Gain = 10000;
*st = Gain;
*st = 10000 - Gain;
return 0;
}