Skip to content

Commit

Permalink
[media] DocBook: add xrefs for enum fe_type
Browse files Browse the repository at this point in the history
The only enum that was missing xrefs at frontend.h is fe_type.
Add xrefs for them.

Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
mchehab committed Jun 9, 2015
1 parent d21ddba commit fe557e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Documentation/DocBook/media/dvb/frontend_legacy_api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
</thead>
<tbody valign="top">
<row>
<entry id="FE_QPSK"><constant>FE_QPSK</constant></entry>
<entry id="FE-QPSK"><constant>FE_QPSK</constant></entry>
<entry>For DVB-S standard</entry>
<entry><constant>SYS_DVBS</constant></entry>
</row>
<row>
<entry id="FE_QAM"><constant>FE_QAM</constant></entry>
<entry id="FE-QAM"><constant>FE_QAM</constant></entry>
<entry>For DVB-C annex A standard</entry>
<entry><constant>SYS_DVBC_ANNEX_A</constant></entry>
</row>
<row>
<entry id="FE_OFDM"><constant>FE_OFDM</constant></entry>
<entry id="FE-OFDM"><constant>FE_OFDM</constant></entry>
<entry>For DVB-T standard</entry>
<entry><constant>SYS_DVBT</constant></entry>
</row>
<row>
<entry id="FE_ATSC"><constant>FE_ATSC</constant></entry>
<entry id="FE-ATSC"><constant>FE_ATSC</constant></entry>
<entry>For ATSC standard (terrestrial) or for DVB-C Annex B (cable) used in US.</entry>
<entry><constant>SYS_ATSC</constant> (terrestrial) or <constant>SYS_DVBC_ANNEX_B</constant> (cable)</entry>
</row>
Expand Down
6 changes: 4 additions & 2 deletions include/uapi/linux/dvb/frontend.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@

#include <linux/types.h>

typedef enum fe_type {
enum fe_type {
FE_QPSK,
FE_QAM,
FE_OFDM,
FE_ATSC
} fe_type_t;
};

typedef enum fe_type fe_type_t;


enum fe_caps {
Expand Down

0 comments on commit fe557e4

Please sign in to comment.