diff --git a/Documentation/DocBook/media/dvb/fe-diseqc-send-burst.xml b/Documentation/DocBook/media/dvb/fe-diseqc-send-burst.xml
new file mode 100644
index 000000000000..d1a798048641
--- /dev/null
+++ b/Documentation/DocBook/media/dvb/fe-diseqc-send-burst.xml
@@ -0,0 +1,86 @@
+
+
+ ioctl FE_DISEQC_SEND_BURST
+ &manvol;
+
+
+
+ FE_DISEQC_SEND_BURST
+ Sends a 22KHz tone burst for 2x1 mini DiSEqC satellite selection.
+
+
+
+
+
+ int ioctl
+ int fd
+ int request
+ &fe-sec-mini-cmd; *tone
+
+
+
+
+
+ Arguments
+
+
+ fd
+
+ &fe_fd;
+
+
+
+ request
+
+ FE_DISEQC_SEND_BURST
+
+
+
+ pointer to &fe-sec-mini-cmd;
+
+
+
+
+
+ Description
+
+This ioctl is used to set the generation of a 22kHz tone burst for mini
+ DiSEqC satellite
+ selection for 2x1 switches.
+ This call requires read/write permissions.
+It provides support for what's specified at
+ Digital Satellite Equipment Control
+ (DiSEqC) - Simple "ToneBurst" Detection Circuit specification.
+
+&return-value-dvb;
+
+
+
+enum fe_sec_mini_cmd
+
+
+ enum fe_sec_tone_mode
+
+ &cs-def;
+
+
+ ID
+ Description
+
+
+
+
+ SEC_MINI_A
+ Sends a mini-DiSEqC 22kHz '0' Tone Burst to
+ select satellite-A
+
+ SEC_MINI_B
+ Sends a mini-DiSEqC 22kHz '1' Data Burst to
+ select satellite-B
+
+
+
+
+
+
+
diff --git a/Documentation/DocBook/media/dvb/frontend.xml b/Documentation/DocBook/media/dvb/frontend.xml
index f05da4abb3fe..17050152a48a 100644
--- a/Documentation/DocBook/media/dvb/frontend.xml
+++ b/Documentation/DocBook/media/dvb/frontend.xml
@@ -75,23 +75,6 @@ specification is available at
-
-SEC tone burst
-
-The 22KHz tone burst is usually used with non-DiSEqC capable switches to select
-between two connected LNBs/satellites. When using DiSEqC epuipment this voltage has to
-be switched consistently to the DiSEqC commands as described in the DiSEqC
-spec.
-
- typedef enum fe_sec_mini_cmd {
- SEC_MINI_A,
- SEC_MINI_B
- } fe_sec_mini_cmd_t;
-
-
-
-
-
frontend spectral inversionThe Inversion field can take one of these values:
@@ -519,55 +502,7 @@ typedef enum fe_hierarchy {
&return-value-dvb;
-
-FE_DISEQC_SEND_BURST
-DESCRIPTION
-
-
-This ioctl call is used to send a 22KHz tone burst.
-
-
-
-SYNOPSIS
-
-
-int ioctl(int fd, int request =
- FE_DISEQC_SEND_BURST, fe_sec_mini_cmd_t burst);
-
-
-
-PARAMETERS
-
-
-int fd
-
-File descriptor returned by a previous call to open().
-
-
-int request
-
-Equals FE_DISEQC_SEND_BURST for this command.
-
-
-fe_sec_mini_cmd_t
- burst
-
-burst A or B.
-
-
-
-&return-value-dvb;
-
-
-
+&sub-fe-diseqc-send-burst;
&sub-fe-set-tone;
&sub-fe-set-voltage;
&sub-fe-enable-high-lnb-voltage;
diff --git a/include/uapi/linux/dvb/frontend.h b/include/uapi/linux/dvb/frontend.h
index 1a098819473f..dd64e6d5d881 100644
--- a/include/uapi/linux/dvb/frontend.h
+++ b/include/uapi/linux/dvb/frontend.h
@@ -122,10 +122,12 @@ enum fe_sec_tone_mode {
typedef enum fe_sec_tone_mode fe_sec_tone_mode_t;
-typedef enum fe_sec_mini_cmd {
+enum fe_sec_mini_cmd {
SEC_MINI_A,
SEC_MINI_B
-} fe_sec_mini_cmd_t;
+};
+
+typedef enum fe_sec_mini_cmd fe_sec_mini_cmd_t;
/**