diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-11-29 10:01:56 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-11-30 04:19:01 -0500 |
commit | 69a52ad3196a98616c333194a2c1295a294e3b51 (patch) | |
tree | cdbaeb106ad5bec269c8239d769d60b19a0f7923 | |
parent | 5bef1c0bd53abb80613f901c4ac50131d035604f (diff) |
media: mt2063: fix some kernel-doc warnings
Fix those warnings:
drivers/media/tuners/mt2063.c:1413: warning: No description found for parameter 'f_ref'
drivers/media/tuners/mt2063.c:1413: warning: Excess function parameter 'f_Ref' description in 'MT2063_fLO_FractionalTerm'
drivers/media/tuners/mt2063.c:1476: warning: Excess function parameter 'f_Avoid' description in 'MT2063_CalcLO2Mult'
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r-- | drivers/media/tuners/mt2063.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/media/tuners/mt2063.c b/drivers/media/tuners/mt2063.c index 8b39d8dc97a0..5c87c5c6a455 100644 --- a/drivers/media/tuners/mt2063.c +++ b/drivers/media/tuners/mt2063.c | |||
@@ -1397,9 +1397,9 @@ static u32 MT2063_Round_fLO(u32 f_LO, u32 f_LO_Step, u32 f_ref) | |||
1397 | * risk of overflow. It accurately calculates | 1397 | * risk of overflow. It accurately calculates |
1398 | * f_ref * num / denom to within 1 HZ with fixed math. | 1398 | * f_ref * num / denom to within 1 HZ with fixed math. |
1399 | * | 1399 | * |
1400 | * @num : Fractional portion of the multiplier | 1400 | * @f_ref: SRO frequency. |
1401 | * @num: Fractional portion of the multiplier | ||
1401 | * @denom: denominator portion of the ratio | 1402 | * @denom: denominator portion of the ratio |
1402 | * @f_Ref: SRO frequency. | ||
1403 | * | 1403 | * |
1404 | * This calculation handles f_ref as two separate 14-bit fields. | 1404 | * This calculation handles f_ref as two separate 14-bit fields. |
1405 | * Therefore, a maximum value of 2^28-1 may safely be used for f_ref. | 1405 | * Therefore, a maximum value of 2^28-1 may safely be used for f_ref. |
@@ -1464,8 +1464,6 @@ static u32 MT2063_CalcLO1Mult(u32 *Div, | |||
1464 | * @f_LO: desired LO frequency. | 1464 | * @f_LO: desired LO frequency. |
1465 | * @f_LO_Step: Minimum step size for the LO (in Hz). | 1465 | * @f_LO_Step: Minimum step size for the LO (in Hz). |
1466 | * @f_Ref: SRO frequency. | 1466 | * @f_Ref: SRO frequency. |
1467 | * @f_Avoid: Range of PLL frequencies to avoid near | ||
1468 | * integer multiples of f_Ref (in Hz). | ||
1469 | * | 1467 | * |
1470 | * Returns: Recalculated LO frequency. | 1468 | * Returns: Recalculated LO frequency. |
1471 | */ | 1469 | */ |