Skip to content

Commit fe557e4

Browse files
committed
[media] DocBook: add xrefs for enum fe_type
The only enum that was missing xrefs at frontend.h is fe_type. Add xrefs for them. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1 parent d21ddba commit fe557e4

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

Documentation/DocBook/media/dvb/frontend_legacy_api.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
</thead>
2121
<tbody valign="top">
2222
<row>
23-
<entry id="FE_QPSK"><constant>FE_QPSK</constant></entry>
23+
<entry id="FE-QPSK"><constant>FE_QPSK</constant></entry>
2424
<entry>For DVB-S standard</entry>
2525
<entry><constant>SYS_DVBS</constant></entry>
2626
</row>
2727
<row>
28-
<entry id="FE_QAM"><constant>FE_QAM</constant></entry>
28+
<entry id="FE-QAM"><constant>FE_QAM</constant></entry>
2929
<entry>For DVB-C annex A standard</entry>
3030
<entry><constant>SYS_DVBC_ANNEX_A</constant></entry>
3131
</row>
3232
<row>
33-
<entry id="FE_OFDM"><constant>FE_OFDM</constant></entry>
33+
<entry id="FE-OFDM"><constant>FE_OFDM</constant></entry>
3434
<entry>For DVB-T standard</entry>
3535
<entry><constant>SYS_DVBT</constant></entry>
3636
</row>
3737
<row>
38-
<entry id="FE_ATSC"><constant>FE_ATSC</constant></entry>
38+
<entry id="FE-ATSC"><constant>FE_ATSC</constant></entry>
3939
<entry>For ATSC standard (terrestrial) or for DVB-C Annex B (cable) used in US.</entry>
4040
<entry><constant>SYS_ATSC</constant> (terrestrial) or <constant>SYS_DVBC_ANNEX_B</constant> (cable)</entry>
4141
</row>

include/uapi/linux/dvb/frontend.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@
2828

2929
#include <linux/types.h>
3030

31-
typedef enum fe_type {
31+
enum fe_type {
3232
FE_QPSK,
3333
FE_QAM,
3434
FE_OFDM,
3535
FE_ATSC
36-
} fe_type_t;
36+
};
37+
38+
typedef enum fe_type fe_type_t;
3739

3840

3941
enum fe_caps {

0 commit comments

Comments
 (0)