Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: dvb: add missing DVB-S2X FEC parameter values

This commit is adding the missing short FEC
Missed on commit 6508a50fe84f9858e8b59b53dce3847aaeeab744

More info: https://dvb.org/wp-content/uploads/2021/02/A083-2r2_DVB-S2X_Draft-EN-302-307-2-v131_Feb_2021.pdf
Table 1: S2X System configurations and application areas

Please note that 128APSK, 256APSK and 256APSK-L
and FEC 29/45, 31/45 are still missing from enums.

Link: https://lore.kernel.org/linux-media/20230111194608.1853-1-athoik@gmail.com
Cc: Robert Schlabbach <robert_s@gmx.net>
Cc: Tom Richardson <trichardson@availink.com>
Signed-off-by: Athanasios Oikonomou <athoik@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>

authored by

Athanasios Oikonomou and committed by
Mauro Carvalho Chehab
1825788e b37d9c99

+8
+8
include/uapi/linux/dvb/frontend.h
··· 296 296 * @FEC_28_45: Forward Error Correction Code 28/45 297 297 * @FEC_32_45: Forward Error Correction Code 32/45 298 298 * @FEC_77_90: Forward Error Correction Code 77/90 299 + * @FEC_11_45: Forward Error Correction Code 11/45 300 + * @FEC_4_15: Forward Error Correction Code 4/15 301 + * @FEC_14_45: Forward Error Correction Code 14/45 302 + * @FEC_7_15: Forward Error Correction Code 7/15 299 303 * 300 304 * Please note that not all FEC types are supported by a given standard. 301 305 */ ··· 333 329 FEC_28_45, 334 330 FEC_32_45, 335 331 FEC_77_90, 332 + FEC_11_45, 333 + FEC_4_15, 334 + FEC_14_45, 335 + FEC_7_15, 336 336 }; 337 337 338 338 /**