diff --git a/Documentation/DocBook/media/dvb/frontend.xml b/Documentation/DocBook/media/dvb/frontend.xml
index 0d6e81bd9ed2..8a6a6ff27af5 100644
--- a/Documentation/DocBook/media/dvb/frontend.xml
+++ b/Documentation/DocBook/media/dvb/frontend.xml
@@ -744,7 +744,7 @@ typedef enum fe_hierarchy {
-int ioctl(int fd, int request = FE_READ_SNR, int16_t
+int ioctl(int fd, int request = FE_READ_SNR, uint16_t
⋆snr);
@@ -766,7 +766,7 @@ typedef enum fe_hierarchy {
-int16_t *snr
+uint16_t *snr
The signal-to-noise ratio is stored into *snr.
@@ -791,7 +791,7 @@ typedef enum fe_hierarchy {
int ioctl( int fd, int request =
- FE_READ_SIGNAL_STRENGTH, int16_t ⋆strength);
+ FE_READ_SIGNAL_STRENGTH, uint16_t ⋆strength);
@@ -814,7 +814,7 @@ typedef enum fe_hierarchy {
-int16_t *strength
+uint16_t *strength
The signal strength value is stored into *strength.