diff --git a/Documentation/DocBook/media/v4l/vidioc-g-ext-ctrls.xml b/Documentation/DocBook/media/v4l/vidioc-g-ext-ctrls.xml
index 2a157b3f2ab2..c5bdbfcc42b3 100644
--- a/Documentation/DocBook/media/v4l/vidioc-g-ext-ctrls.xml
+++ b/Documentation/DocBook/media/v4l/vidioc-g-ext-ctrls.xml
@@ -183,6 +183,20 @@ type V4L2_CTRL_TYPE_INTEGER64 and
string
A pointer to a string. Valid if this control is of
type V4L2_CTRL_TYPE_STRING.
+
+
+
+ __u8 *
+ p_u8
+ A pointer to a matrix control of unsigned 8-bit values.
+Valid if this control is of type V4L2_CTRL_TYPE_U8.
+
+
+
+ __u16 *
+ p_u16
+ A pointer to a matrix control of unsigned 16-bit values.
+Valid if this control is of type V4L2_CTRL_TYPE_U16.
diff --git a/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml b/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml
index 04589e53f38b..d9a3f23371e2 100644
--- a/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml
+++ b/Documentation/DocBook/media/v4l/vidioc-queryctrl.xml
@@ -289,7 +289,8 @@ accepts values 0-511 and the driver reports 0-65535, step should be
The default value of a
V4L2_CTRL_TYPE_INTEGER, _INTEGER64,
_BOOLEAN, _BITMASK,
-_MENU or _INTEGER_MENU control.
+_MENU, _INTEGER_MENU,
+_U8 or _U16 control.
Not valid for other types of controls.
Note that drivers reset controls to their default value only when the
driver is first loaded, never afterwards.
@@ -510,6 +511,26 @@ ioctl returns the name of the control class and this control type.
Older drivers which do not support this feature return an
&EINVAL;.
+
+ V4L2_CTRL_TYPE_U8
+ any
+ any
+ any
+ An unsigned 8-bit valued control ranging from minimum to
+maximum inclusive. The step value indicates the increment between
+values which are actually different on the hardware. This type is only used
+in array controls.
+
+
+ V4L2_CTRL_TYPE_U16
+ any
+ any
+ any
+ An unsigned 16-bit valued control ranging from minimum to
+maximum inclusive. The step value indicates the increment between
+values which are actually different on the hardware. This type is only used
+in array controls.
+