mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 00:36:42 +07:00
[media] mxl111sf: disable snr / ber calculations for DVB-T
Leaving this code enabled breaks the build on some architectures, and we shouldn't have any floating point math in the kernel, anyway. These macros need to be re-written, but it's harmless to simply return zero for now. Signed-off-by: Michael Krufky <mkrufky@kernellabs.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
4f98480f32
commit
7e8d8f6df3
@ -370,10 +370,20 @@ static int mxl111sf_demod_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef MXL111SF_DEMOD_ENABLE_CALCULATIONS
|
||||||
|
/* FIXME: leaving this enabled breaks the build on some architectures,
|
||||||
|
* and we shouldn't have any floating point math in the kernel, anyway.
|
||||||
|
*
|
||||||
|
* These macros need to be re-written, but it's harmless to simply
|
||||||
|
* return zero for now. */
|
||||||
#define CALCULATE_BER(avg_errors, count) \
|
#define CALCULATE_BER(avg_errors, count) \
|
||||||
((u32)(avg_errors * 4)/(count*64*188*8))
|
((u32)(avg_errors * 4)/(count*64*188*8))
|
||||||
#define CALCULATE_SNR(data) \
|
#define CALCULATE_SNR(data) \
|
||||||
((u32)((10 * (u32)data / 64) - 2.5))
|
((u32)((10 * (u32)data / 64) - 2.5))
|
||||||
|
#else
|
||||||
|
#define CALCULATE_BER(avg_errors, count) 0
|
||||||
|
#define CALCULATE_SNR(data) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
static int mxl111sf_demod_read_ber(struct dvb_frontend *fe, u32 *ber)
|
static int mxl111sf_demod_read_ber(struct dvb_frontend *fe, u32 *ber)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user