Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • sw/misc/linux
1 result
Show changes
Commits on Source (966)
Showing
with 285 additions and 213 deletions
...@@ -311,10 +311,13 @@ Description: Do background GC aggressively when set. Set to 0 by default. ...@@ -311,10 +311,13 @@ Description: Do background GC aggressively when set. Set to 0 by default.
GC approach and turns SSR mode on. GC approach and turns SSR mode on.
gc urgent low(2): lowers the bar of checking I/O idling in gc urgent low(2): lowers the bar of checking I/O idling in
order to process outstanding discard commands and GC a order to process outstanding discard commands and GC a
little bit aggressively. uses cost benefit GC approach. little bit aggressively. always uses cost benefit GC approach,
and will override age-threshold GC approach if ATGC is enabled
at the same time.
gc urgent mid(3): does GC forcibly in a period of given gc urgent mid(3): does GC forcibly in a period of given
gc_urgent_sleep_time and executes a mid level of I/O idling check. gc_urgent_sleep_time and executes a mid level of I/O idling check.
uses cost benefit GC approach. always uses cost benefit GC approach, and will override
age-threshold GC approach if ATGC is enabled at the same time.
What: /sys/fs/f2fs/<disk>/gc_urgent_sleep_time What: /sys/fs/f2fs/<disk>/gc_urgent_sleep_time
Date: August 2017 Date: August 2017
......
...@@ -249,7 +249,7 @@ ticks this GP)" indicates that this CPU has not taken any scheduling-clock ...@@ -249,7 +249,7 @@ ticks this GP)" indicates that this CPU has not taken any scheduling-clock
interrupts during the current stalled grace period. interrupts during the current stalled grace period.
The "idle=" portion of the message prints the dyntick-idle state. The "idle=" portion of the message prints the dyntick-idle state.
The hex number before the first "/" is the low-order 12 bits of the The hex number before the first "/" is the low-order 16 bits of the
dynticks counter, which will have an even-numbered value if the CPU dynticks counter, which will have an even-numbered value if the CPU
is in dyntick-idle mode and an odd-numbered value otherwise. The hex is in dyntick-idle mode and an odd-numbered value otherwise. The hex
number between the two "/"s is the value of the nesting, which will be number between the two "/"s is the value of the nesting, which will be
......
...@@ -47,6 +47,8 @@ The list of possible return codes: ...@@ -47,6 +47,8 @@ The list of possible return codes:
-ENOMEM zram was not able to allocate enough memory to fulfil your -ENOMEM zram was not able to allocate enough memory to fulfil your
needs. needs.
-EINVAL invalid input has been provided. -EINVAL invalid input has been provided.
-EAGAIN re-try operation later (e.g. when attempting to run recompress
and writeback simultaneously).
======== ============================================================= ======== =============================================================
If you use 'echo', the returned value is set by the 'echo' utility, If you use 'echo', the returned value is set by the 'echo' utility,
......
...@@ -15,7 +15,7 @@ Please notice, however, that, if: ...@@ -15,7 +15,7 @@ Please notice, however, that, if:
you should use the main media development tree ``master`` branch: you should use the main media development tree ``master`` branch:
https://git.linuxtv.org/media_tree.git/ https://git.linuxtv.org/media.git/
In this case, you may find some useful information at the In this case, you may find some useful information at the
`LinuxTv wiki pages <https://linuxtv.org/wiki>`_: `LinuxTv wiki pages <https://linuxtv.org/wiki>`_:
......
...@@ -67,7 +67,7 @@ Changes / Fixes ...@@ -67,7 +67,7 @@ Changes / Fixes
Please mail to linux-media AT vger.kernel.org unified diffs against Please mail to linux-media AT vger.kernel.org unified diffs against
the linux media git tree: the linux media git tree:
https://git.linuxtv.org/media_tree.git/ https://git.linuxtv.org/media.git/
This is done by committing a patch at a clone of the git tree and This is done by committing a patch at a clone of the git tree and
submitting the patch using ``git send-email``. Don't forget to submitting the patch using ``git send-email``. Don't forget to
......
...@@ -896,10 +896,19 @@ Offset/size: 0x260/4 ...@@ -896,10 +896,19 @@ Offset/size: 0x260/4
The kernel runtime start address is determined by the following algorithm:: The kernel runtime start address is determined by the following algorithm::
if (relocatable_kernel) if (relocatable_kernel) {
runtime_start = align_up(load_address, kernel_alignment) if (load_address < pref_address)
else load_address = pref_address;
runtime_start = pref_address runtime_start = align_up(load_address, kernel_alignment);
} else {
runtime_start = pref_address;
}
Hence the necessary memory window location and size can be estimated by
a boot loader as::
memory_window_start = runtime_start;
memory_window_size = init_size;
============ =============== ============ ===============
Field name: handover_offset Field name: handover_offset
......
...@@ -39,11 +39,11 @@ properties: ...@@ -39,11 +39,11 @@ properties:
reg: reg:
minItems: 2 minItems: 2
maxItems: 9 maxItems: 10
reg-names: reg-names:
minItems: 2 minItems: 2
maxItems: 9 maxItems: 10
interrupts: interrupts:
maxItems: 1 maxItems: 1
...@@ -134,6 +134,36 @@ allOf: ...@@ -134,6 +134,36 @@ allOf:
- qcom,qdu1000-llcc - qcom,qdu1000-llcc
- qcom,sc8180x-llcc - qcom,sc8180x-llcc
- qcom,sc8280xp-llcc - qcom,sc8280xp-llcc
then:
properties:
reg:
items:
- description: LLCC0 base register region
- description: LLCC1 base register region
- description: LLCC2 base register region
- description: LLCC3 base register region
- description: LLCC4 base register region
- description: LLCC5 base register region
- description: LLCC6 base register region
- description: LLCC7 base register region
- description: LLCC broadcast base register region
reg-names:
items:
- const: llcc0_base
- const: llcc1_base
- const: llcc2_base
- const: llcc3_base
- const: llcc4_base
- const: llcc5_base
- const: llcc6_base
- const: llcc7_base
- const: llcc_broadcast_base
- if:
properties:
compatible:
contains:
enum:
- qcom,x1e80100-llcc - qcom,x1e80100-llcc
then: then:
properties: properties:
...@@ -148,6 +178,7 @@ allOf: ...@@ -148,6 +178,7 @@ allOf:
- description: LLCC6 base register region - description: LLCC6 base register region
- description: LLCC7 base register region - description: LLCC7 base register region
- description: LLCC broadcast base register region - description: LLCC broadcast base register region
- description: LLCC broadcast AND register region
reg-names: reg-names:
items: items:
- const: llcc0_base - const: llcc0_base
...@@ -159,6 +190,7 @@ allOf: ...@@ -159,6 +190,7 @@ allOf:
- const: llcc6_base - const: llcc6_base
- const: llcc7_base - const: llcc7_base
- const: llcc_broadcast_base - const: llcc_broadcast_base
- const: llcc_broadcast_and_base
- if: - if:
properties: properties:
......
...@@ -26,9 +26,21 @@ properties: ...@@ -26,9 +26,21 @@ properties:
description: description:
Specifies the reference clock(s) from which the output frequency is Specifies the reference clock(s) from which the output frequency is
derived. This must either reference one clock if only the first clock derived. This must either reference one clock if only the first clock
input is connected or two if both clock inputs are connected. input is connected or two if both clock inputs are connected. The last
minItems: 1 clock is the AXI bus clock that needs to be enabled so we can access the
maxItems: 2 core registers.
minItems: 2
maxItems: 3
clock-names:
oneOf:
- items:
- const: clkin1
- const: s_axi_aclk
- items:
- const: clkin1
- const: clkin2
- const: s_axi_aclk
'#clock-cells': '#clock-cells':
const: 0 const: 0
...@@ -40,6 +52,7 @@ required: ...@@ -40,6 +52,7 @@ required:
- compatible - compatible
- reg - reg
- clocks - clocks
- clock-names
- '#clock-cells' - '#clock-cells'
additionalProperties: false additionalProperties: false
...@@ -50,5 +63,6 @@ examples: ...@@ -50,5 +63,6 @@ examples:
compatible = "adi,axi-clkgen-2.00.a"; compatible = "adi,axi-clkgen-2.00.a";
#clock-cells = <0>; #clock-cells = <0>;
reg = <0xff000000 0x1000>; reg = <0xff000000 0x1000>;
clocks = <&osc 1>; clocks = <&osc 1>, <&clkc 15>;
clock-names = "clkin1", "s_axi_aclk";
}; };
...@@ -30,7 +30,7 @@ properties: ...@@ -30,7 +30,7 @@ properties:
maxItems: 1 maxItems: 1
spi-max-frequency: spi-max-frequency:
maximum: 30000000 maximum: 66000000
reset-gpios: reset-gpios:
maxItems: 1 maxItems: 1
......
...@@ -183,6 +183,13 @@ properties: ...@@ -183,6 +183,13 @@ properties:
description: description:
Register bits of stop mode control, the format is <&gpr req_gpr req_bit>. Register bits of stop mode control, the format is <&gpr req_gpr req_bit>.
fsl,pps-channel:
$ref: /schemas/types.yaml#/definitions/uint32
default: 0
description:
Specifies to which timer instance the PPS signal is routed.
enum: [0, 1, 2, 3]
mdio: mdio:
$ref: mdio.yaml# $ref: mdio.yaml#
unevaluatedProperties: false unevaluatedProperties: false
......
...@@ -149,7 +149,7 @@ allOf: ...@@ -149,7 +149,7 @@ allOf:
then: then:
properties: properties:
clocks: clocks:
minItems: 4 minItems: 6
clock-names: clock-names:
items: items:
...@@ -178,7 +178,7 @@ allOf: ...@@ -178,7 +178,7 @@ allOf:
then: then:
properties: properties:
clocks: clocks:
minItems: 4 minItems: 6
clock-names: clock-names:
items: items:
...@@ -207,6 +207,7 @@ allOf: ...@@ -207,6 +207,7 @@ allOf:
properties: properties:
clocks: clocks:
minItems: 4 minItems: 4
maxItems: 4
clock-names: clock-names:
items: items:
......
...@@ -91,14 +91,17 @@ allOf: ...@@ -91,14 +91,17 @@ allOf:
- if: - if:
properties: properties:
compatible: compatible:
# Match without "contains", to skip newer variants which are still oneOf:
# compatible with samsung,exynos7-wakeup-eint # Match without "contains", to skip newer variants which are still
enum: # compatible with samsung,exynos7-wakeup-eint
- samsung,s5pv210-wakeup-eint - enum:
- samsung,exynos4210-wakeup-eint - samsung,exynos4210-wakeup-eint
- samsung,exynos5433-wakeup-eint - samsung,exynos7-wakeup-eint
- samsung,exynos7-wakeup-eint - samsung,s5pv210-wakeup-eint
- samsung,exynos7885-wakeup-eint - contains:
enum:
- samsung,exynos5433-wakeup-eint
- samsung,exynos7885-wakeup-eint
then: then:
properties: properties:
interrupts: interrupts:
......
...@@ -18,16 +18,15 @@ properties: ...@@ -18,16 +18,15 @@ properties:
description: prop-encoded-array <a b> description: prop-encoded-array <a b>
$ref: /schemas/types.yaml#/definitions/uint32-array $ref: /schemas/types.yaml#/definitions/uint32-array
items: items:
items: - description: Delay between rts signal and beginning of data sent in
- description: Delay between rts signal and beginning of data sent in milliseconds. It corresponds to the delay before sending data.
milliseconds. It corresponds to the delay before sending data. default: 0
default: 0 maximum: 100
maximum: 100 - description: Delay between end of data sent and rts signal in milliseconds.
- description: Delay between end of data sent and rts signal in milliseconds. It corresponds to the delay after sending data and actual release
It corresponds to the delay after sending data and actual release of the line.
of the line. default: 0
default: 0 maximum: 100
maximum: 100
rs485-rts-active-high: rs485-rts-active-high:
description: drive RTS high when sending (this is the default). description: drive RTS high when sending (this is the default).
......
...@@ -23,8 +23,8 @@ properties: ...@@ -23,8 +23,8 @@ properties:
Indicates how many data pins are used to transmit two channels of PDM Indicates how many data pins are used to transmit two channels of PDM
signal. 0 means two wires, 1 means one wire. Default value is 0. signal. 0 means two wires, 1 means one wire. Default value is 0.
enum: enum:
- 0 # one wire - 0 # two wires
- 1 # two wires - 1 # one wire
mediatek,mic-type-0: mediatek,mic-type-0:
$ref: /schemas/types.yaml#/definitions/uint32 $ref: /schemas/types.yaml#/definitions/uint32
...@@ -53,9 +53,9 @@ additionalProperties: false ...@@ -53,9 +53,9 @@ additionalProperties: false
examples: examples:
- | - |
mt6359codec: mt6359codec { mt6359codec: audio-codec {
mediatek,dmic-mode = <0>; mediatek,dmic-mode = <0>;
mediatek,mic-type-0 = <2>; mediatek,mic-type-0 = <2>;
}; };
... ...
...@@ -1015,6 +1015,8 @@ patternProperties: ...@@ -1015,6 +1015,8 @@ patternProperties:
description: Shanghai Neardi Technology Co., Ltd. description: Shanghai Neardi Technology Co., Ltd.
"^nec,.*": "^nec,.*":
description: NEC LCD Technologies, Ltd. description: NEC LCD Technologies, Ltd.
"^neofidelity,.*":
description: Neofidelity Inc.
"^neonode,.*": "^neonode,.*":
description: Neonode Inc. description: Neonode Inc.
"^netgear,.*": "^netgear,.*":
......
...@@ -770,7 +770,8 @@ process the parameters it is given. ...@@ -770,7 +770,8 @@ process the parameters it is given.
* :: * ::
bool fs_validate_description(const struct fs_parameter_description *desc); bool fs_validate_description(const char *name,
const struct fs_parameter_description *desc);
This performs some validation checks on a parameter description. It This performs some validation checks on a parameter description. It
returns true if the description is good and false if it is not. It will returns true if the description is good and false if it is not. It will
......
...@@ -153,7 +153,7 @@ Use seqcount_latch_t when the write side sections cannot be protected ...@@ -153,7 +153,7 @@ Use seqcount_latch_t when the write side sections cannot be protected
from interruption by readers. This is typically the case when the read from interruption by readers. This is typically the case when the read
side can be invoked from NMI handlers. side can be invoked from NMI handlers.
Check `raw_write_seqcount_latch()` for more information. Check `write_seqcount_latch()` for more information.
.. _seqlock_t: .. _seqlock_t:
......
...@@ -701,7 +701,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -701,7 +701,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-aimslab* F: drivers/media/radio/radio-aimslab*
   
AIO AIO
...@@ -809,7 +809,7 @@ ALLWINNER A10 CSI DRIVER ...@@ -809,7 +809,7 @@ ALLWINNER A10 CSI DRIVER
M: Maxime Ripard <mripard@kernel.org> M: Maxime Ripard <mripard@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
F: drivers/media/platform/sunxi/sun4i-csi/ F: drivers/media/platform/sunxi/sun4i-csi/
   
...@@ -818,7 +818,7 @@ M: Yong Deng <yong.deng@magewell.com> ...@@ -818,7 +818,7 @@ M: Yong Deng <yong.deng@magewell.com>
M: Paul Kocialkowski <paul.kocialkowski@bootlin.com> M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
F: drivers/media/platform/sunxi/sun6i-csi/ F: drivers/media/platform/sunxi/sun6i-csi/
   
...@@ -826,7 +826,7 @@ ALLWINNER A31 ISP DRIVER ...@@ -826,7 +826,7 @@ ALLWINNER A31 ISP DRIVER
M: Paul Kocialkowski <paul.kocialkowski@bootlin.com> M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
F: drivers/staging/media/sunxi/sun6i-isp/ F: drivers/staging/media/sunxi/sun6i-isp/
F: drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h F: drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
...@@ -835,7 +835,7 @@ ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER ...@@ -835,7 +835,7 @@ ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
M: Paul Kocialkowski <paul.kocialkowski@bootlin.com> M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
F: drivers/media/platform/sunxi/sun6i-mipi-csi2/ F: drivers/media/platform/sunxi/sun6i-mipi-csi2/
   
...@@ -3348,7 +3348,7 @@ ASAHI KASEI AK7375 LENS VOICE COIL DRIVER ...@@ -3348,7 +3348,7 @@ ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
M: Tianshu Qiu <tian.shu.qiu@intel.com> M: Tianshu Qiu <tian.shu.qiu@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml F: Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
F: drivers/media/i2c/ak7375.c F: drivers/media/i2c/ak7375.c
   
...@@ -3765,7 +3765,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -3765,7 +3765,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/dvb-usb-v2/az6007.c F: drivers/media/usb/dvb-usb-v2/az6007.c
   
AZTECH FM RADIO RECEIVER DRIVER AZTECH FM RADIO RECEIVER DRIVER
...@@ -3773,7 +3773,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -3773,7 +3773,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-aztech* F: drivers/media/radio/radio-aztech*
   
B43 WIRELESS DRIVER B43 WIRELESS DRIVER
...@@ -3857,7 +3857,7 @@ M: Fabien Dessenne <fabien.dessenne@foss.st.com> ...@@ -3857,7 +3857,7 @@ M: Fabien Dessenne <fabien.dessenne@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/platform/st/sti/bdisp F: drivers/media/platform/st/sti/bdisp
   
BECKHOFF CX5020 ETHERCAT MASTER DRIVER BECKHOFF CX5020 ETHERCAT MASTER DRIVER
...@@ -4865,7 +4865,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -4865,7 +4865,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/driver-api/media/drivers/bttv* F: Documentation/driver-api/media/drivers/bttv*
F: drivers/media/pci/bt8xx/bttv* F: drivers/media/pci/bt8xx/bttv*
   
...@@ -4979,13 +4979,13 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -4979,13 +4979,13 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-cadet* F: drivers/media/radio/radio-cadet*
   
CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/cafe_ccic* F: Documentation/admin-guide/media/cafe_ccic*
F: drivers/media/platform/marvell/ F: drivers/media/platform/marvell/
   
...@@ -5169,7 +5169,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl> ...@@ -5169,7 +5169,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: http://linuxtv.org W: http://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/ABI/testing/debugfs-cec-error-inj F: Documentation/ABI/testing/debugfs-cec-error-inj
F: Documentation/devicetree/bindings/media/cec/cec-common.yaml F: Documentation/devicetree/bindings/media/cec/cec-common.yaml
F: Documentation/driver-api/media/cec-core.rst F: Documentation/driver-api/media/cec-core.rst
...@@ -5186,7 +5186,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl> ...@@ -5186,7 +5186,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: http://linuxtv.org W: http://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/cec/cec-gpio.yaml F: Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
F: drivers/media/cec/platform/cec-gpio/ F: drivers/media/cec/platform/cec-gpio/
   
...@@ -5393,7 +5393,7 @@ CHRONTEL CH7322 CEC DRIVER ...@@ -5393,7 +5393,7 @@ CHRONTEL CH7322 CEC DRIVER
M: Joe Tessler <jrt@google.com> M: Joe Tessler <jrt@google.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
F: drivers/media/cec/i2c/ch7322.c F: drivers/media/cec/i2c/ch7322.c
   
...@@ -5582,7 +5582,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl> ...@@ -5582,7 +5582,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/cobalt/ F: drivers/media/pci/cobalt/
   
COCCINELLE/Semantic Patches (SmPL) COCCINELLE/Semantic Patches (SmPL)
...@@ -6026,7 +6026,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -6026,7 +6026,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: http://linuxtv.org W: http://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/cs3308.c F: drivers/media/i2c/cs3308.c
   
CS5535 Audio ALSA driver CS5535 Audio ALSA driver
...@@ -6057,7 +6057,7 @@ M: Andy Walls <awalls@md.metrocast.net> ...@@ -6057,7 +6057,7 @@ M: Andy Walls <awalls@md.metrocast.net>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/cx18/ F: drivers/media/pci/cx18/
F: include/uapi/linux/ivtv* F: include/uapi/linux/ivtv*
   
...@@ -6066,7 +6066,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -6066,7 +6066,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/common/cx2341x* F: drivers/media/common/cx2341x*
F: include/media/drv-intf/cx2341x.h F: include/media/drv-intf/cx2341x.h
   
...@@ -6084,7 +6084,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -6084,7 +6084,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/driver-api/media/drivers/cx88* F: Documentation/driver-api/media/drivers/cx88*
F: drivers/media/pci/cx88/ F: drivers/media/pci/cx88/
   
...@@ -6320,7 +6320,7 @@ DEINTERLACE DRIVERS FOR ALLWINNER H3 ...@@ -6320,7 +6320,7 @@ DEINTERLACE DRIVERS FOR ALLWINNER H3
M: Jernej Skrabec <jernej.skrabec@gmail.com> M: Jernej Skrabec <jernej.skrabec@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
F: drivers/media/platform/sunxi/sun8i-di/ F: drivers/media/platform/sunxi/sun8i-di/
   
...@@ -6447,7 +6447,7 @@ M: Hugues Fruchet <hugues.fruchet@foss.st.com> ...@@ -6447,7 +6447,7 @@ M: Hugues Fruchet <hugues.fruchet@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/platform/st/sti/delta F: drivers/media/platform/st/sti/delta
   
DENALI NAND DRIVER DENALI NAND DRIVER
...@@ -6855,7 +6855,7 @@ DONGWOON DW9714 LENS VOICE COIL DRIVER ...@@ -6855,7 +6855,7 @@ DONGWOON DW9714 LENS VOICE COIL DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
F: drivers/media/i2c/dw9714.c F: drivers/media/i2c/dw9714.c
   
...@@ -6863,13 +6863,13 @@ DONGWOON DW9719 LENS VOICE COIL DRIVER ...@@ -6863,13 +6863,13 @@ DONGWOON DW9719 LENS VOICE COIL DRIVER
M: Daniel Scally <djrscally@gmail.com> M: Daniel Scally <djrscally@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/dw9719.c F: drivers/media/i2c/dw9719.c
   
DONGWOON DW9768 LENS VOICE COIL DRIVER DONGWOON DW9768 LENS VOICE COIL DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
F: drivers/media/i2c/dw9768.c F: drivers/media/i2c/dw9768.c
   
...@@ -6877,7 +6877,7 @@ DONGWOON DW9807 LENS VOICE COIL DRIVER ...@@ -6877,7 +6877,7 @@ DONGWOON DW9807 LENS VOICE COIL DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
F: drivers/media/i2c/dw9807-vcm.c F: drivers/media/i2c/dw9807-vcm.c
   
...@@ -7860,7 +7860,7 @@ DSBR100 USB FM RADIO DRIVER ...@@ -7860,7 +7860,7 @@ DSBR100 USB FM RADIO DRIVER
M: Alexey Klimov <klimov.linux@gmail.com> M: Alexey Klimov <klimov.linux@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/dsbr100.c F: drivers/media/radio/dsbr100.c
   
DT3155 MEDIA DRIVER DT3155 MEDIA DRIVER
...@@ -7868,7 +7868,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -7868,7 +7868,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/dt3155/ F: drivers/media/pci/dt3155/
   
DVB_USB_AF9015 MEDIA DRIVER DVB_USB_AF9015 MEDIA DRIVER
...@@ -7913,7 +7913,7 @@ S: Maintained ...@@ -7913,7 +7913,7 @@ S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
W: http://github.com/mkrufky W: http://github.com/mkrufky
Q: http://patchwork.linuxtv.org/project/linux-media/list/ Q: http://patchwork.linuxtv.org/project/linux-media/list/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/dvb-usb/cxusb* F: drivers/media/usb/dvb-usb/cxusb*
   
DVB_USB_EC168 MEDIA DRIVER DVB_USB_EC168 MEDIA DRIVER
...@@ -8282,7 +8282,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -8282,7 +8282,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/em28xx* F: Documentation/admin-guide/media/em28xx*
F: drivers/media/usb/em28xx/ F: drivers/media/usb/em28xx/
   
...@@ -8578,7 +8578,7 @@ EXTRON DA HD 4K PLUS CEC DRIVER ...@@ -8578,7 +8578,7 @@ EXTRON DA HD 4K PLUS CEC DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/cec/usb/extron-da-hd-4k-plus/ F: drivers/media/cec/usb/extron-da-hd-4k-plus/
   
EXYNOS DP DRIVER EXYNOS DP DRIVER
...@@ -9400,7 +9400,7 @@ GALAXYCORE GC2145 SENSOR DRIVER ...@@ -9400,7 +9400,7 @@ GALAXYCORE GC2145 SENSOR DRIVER
M: Alain Volmat <alain.volmat@foss.st.com> M: Alain Volmat <alain.volmat@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/galaxycore,gc2145.yaml F: Documentation/devicetree/bindings/media/i2c/galaxycore,gc2145.yaml
F: drivers/media/i2c/gc2145.c F: drivers/media/i2c/gc2145.c
   
...@@ -9448,7 +9448,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -9448,7 +9448,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-gemtek* F: drivers/media/radio/radio-gemtek*
   
GENERIC ARCHITECTURE TOPOLOGY GENERIC ARCHITECTURE TOPOLOGY
...@@ -9830,56 +9830,56 @@ GS1662 VIDEO SERIALIZER ...@@ -9830,56 +9830,56 @@ GS1662 VIDEO SERIALIZER
M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr> M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/spi/gs1662.c F: drivers/media/spi/gs1662.c
   
GSPCA FINEPIX SUBDRIVER GSPCA FINEPIX SUBDRIVER
M: Frank Zago <frank@zago.net> M: Frank Zago <frank@zago.net>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/finepix.c F: drivers/media/usb/gspca/finepix.c
   
GSPCA GL860 SUBDRIVER GSPCA GL860 SUBDRIVER
M: Olivier Lorin <o.lorin@laposte.net> M: Olivier Lorin <o.lorin@laposte.net>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/gl860/ F: drivers/media/usb/gspca/gl860/
   
GSPCA M5602 SUBDRIVER GSPCA M5602 SUBDRIVER
M: Erik Andren <erik.andren@gmail.com> M: Erik Andren <erik.andren@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/m5602/ F: drivers/media/usb/gspca/m5602/
   
GSPCA PAC207 SONIXB SUBDRIVER GSPCA PAC207 SONIXB SUBDRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/pac207.c F: drivers/media/usb/gspca/pac207.c
   
GSPCA SN9C20X SUBDRIVER GSPCA SN9C20X SUBDRIVER
M: Brian Johnson <brijohn@gmail.com> M: Brian Johnson <brijohn@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/sn9c20x.c F: drivers/media/usb/gspca/sn9c20x.c
   
GSPCA T613 SUBDRIVER GSPCA T613 SUBDRIVER
M: Leandro Costantino <lcostantino@gmail.com> M: Leandro Costantino <lcostantino@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/t613.c F: drivers/media/usb/gspca/t613.c
   
GSPCA USB WEBCAM DRIVER GSPCA USB WEBCAM DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/gspca/ F: drivers/media/usb/gspca/
   
GTP (GPRS Tunneling Protocol) GTP (GPRS Tunneling Protocol)
...@@ -9996,7 +9996,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -9996,7 +9996,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/hdpvr/ F: drivers/media/usb/hdpvr/
   
HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
...@@ -10503,7 +10503,7 @@ M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com> ...@@ -10503,7 +10503,7 @@ M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/platform/st/sti/hva F: drivers/media/platform/st/sti/hva
   
HWPOISON MEMORY FAILURE HANDLING HWPOISON MEMORY FAILURE HANDLING
...@@ -10531,7 +10531,7 @@ HYNIX HI556 SENSOR DRIVER ...@@ -10531,7 +10531,7 @@ HYNIX HI556 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/hi556.c F: drivers/media/i2c/hi556.c
   
HYNIX HI846 SENSOR DRIVER HYNIX HI846 SENSOR DRIVER
...@@ -11502,7 +11502,7 @@ M: Dan Scally <djrscally@gmail.com> ...@@ -11502,7 +11502,7 @@ M: Dan Scally <djrscally@gmail.com>
R: Tianshu Qiu <tian.shu.qiu@intel.com> R: Tianshu Qiu <tian.shu.qiu@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
F: drivers/media/pci/intel/ipu3/ F: drivers/media/pci/intel/ipu3/
   
...@@ -11523,7 +11523,7 @@ M: Bingbu Cao <bingbu.cao@intel.com> ...@@ -11523,7 +11523,7 @@ M: Bingbu Cao <bingbu.cao@intel.com>
R: Tianshu Qiu <tian.shu.qiu@intel.com> R: Tianshu Qiu <tian.shu.qiu@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/ipu6-isys.rst F: Documentation/admin-guide/media/ipu6-isys.rst
F: drivers/media/pci/intel/ipu6/ F: drivers/media/pci/intel/ipu6/
   
...@@ -12036,7 +12036,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -12036,7 +12036,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-isa* F: drivers/media/radio/radio-isa*
   
ISAPNP ISAPNP
...@@ -12138,7 +12138,7 @@ M: Andy Walls <awalls@md.metrocast.net> ...@@ -12138,7 +12138,7 @@ M: Andy Walls <awalls@md.metrocast.net>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/ivtv* F: Documentation/admin-guide/media/ivtv*
F: drivers/media/pci/ivtv/ F: drivers/media/pci/ivtv/
F: include/uapi/linux/ivtv* F: include/uapi/linux/ivtv*
...@@ -12286,7 +12286,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -12286,7 +12286,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-keene* F: drivers/media/radio/radio-keene*
   
KERNEL AUTOMOUNTER KERNEL AUTOMOUNTER
...@@ -13573,7 +13573,7 @@ MA901 MASTERKIT USB FM RADIO DRIVER ...@@ -13573,7 +13573,7 @@ MA901 MASTERKIT USB FM RADIO DRIVER
M: Alexey Klimov <klimov.linux@gmail.com> M: Alexey Klimov <klimov.linux@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-ma901.c F: drivers/media/radio/radio-ma901.c
   
MAC80211 MAC80211
...@@ -13868,7 +13868,7 @@ MAX2175 SDR TUNER DRIVER ...@@ -13868,7 +13868,7 @@ MAX2175 SDR TUNER DRIVER
M: Ramesh Shanmugasundaram <rashanmu@gmail.com> M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/max2175.txt F: Documentation/devicetree/bindings/media/i2c/max2175.txt
F: Documentation/userspace-api/media/drivers/max2175.rst F: Documentation/userspace-api/media/drivers/max2175.rst
F: drivers/media/i2c/max2175* F: drivers/media/i2c/max2175*
...@@ -14048,7 +14048,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -14048,7 +14048,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-maxiradio* F: drivers/media/radio/radio-maxiradio*
   
MAXLINEAR ETHERNET PHY DRIVER MAXLINEAR ETHERNET PHY DRIVER
...@@ -14131,7 +14131,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> ...@@ -14131,7 +14131,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://www.linuxtv.org W: https://www.linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/mc/ F: drivers/media/mc/
F: include/media/media-*.h F: include/media/media-*.h
F: include/uapi/linux/media.h F: include/uapi/linux/media.h
...@@ -14140,7 +14140,7 @@ MEDIA DRIVER FOR FREESCALE IMX PXP ...@@ -14140,7 +14140,7 @@ MEDIA DRIVER FOR FREESCALE IMX PXP
M: Philipp Zabel <p.zabel@pengutronix.de> M: Philipp Zabel <p.zabel@pengutronix.de>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/platform/nxp/imx-pxp.[ch] F: drivers/media/platform/nxp/imx-pxp.[ch]
   
MEDIA DRIVERS FOR ASCOT2E MEDIA DRIVERS FOR ASCOT2E
...@@ -14149,7 +14149,7 @@ L: linux-media@vger.kernel.org ...@@ -14149,7 +14149,7 @@ L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
W: http://netup.tv/ W: http://netup.tv/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/ascot2e* F: drivers/media/dvb-frontends/ascot2e*
   
MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
...@@ -14157,7 +14157,7 @@ M: Jasmin Jessich <jasmin@anw.at> ...@@ -14157,7 +14157,7 @@ M: Jasmin Jessich <jasmin@anw.at>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/cxd2099* F: drivers/media/dvb-frontends/cxd2099*
   
MEDIA DRIVERS FOR CXD2841ER MEDIA DRIVERS FOR CXD2841ER
...@@ -14166,7 +14166,7 @@ L: linux-media@vger.kernel.org ...@@ -14166,7 +14166,7 @@ L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
W: http://netup.tv/ W: http://netup.tv/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/cxd2841er* F: drivers/media/dvb-frontends/cxd2841er*
   
MEDIA DRIVERS FOR CXD2880 MEDIA DRIVERS FOR CXD2880
...@@ -14174,7 +14174,7 @@ M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com> ...@@ -14174,7 +14174,7 @@ M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
W: http://linuxtv.org/ W: http://linuxtv.org/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/cxd2880/* F: drivers/media/dvb-frontends/cxd2880/*
F: drivers/media/spi/cxd2880* F: drivers/media/spi/cxd2880*
   
...@@ -14182,7 +14182,7 @@ MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES ...@@ -14182,7 +14182,7 @@ MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/ddbridge/* F: drivers/media/pci/ddbridge/*
   
MEDIA DRIVERS FOR FREESCALE IMX MEDIA DRIVERS FOR FREESCALE IMX
...@@ -14190,7 +14190,7 @@ M: Steve Longerbeam <slongerbeam@gmail.com> ...@@ -14190,7 +14190,7 @@ M: Steve Longerbeam <slongerbeam@gmail.com>
M: Philipp Zabel <p.zabel@pengutronix.de> M: Philipp Zabel <p.zabel@pengutronix.de>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/imx.rst F: Documentation/admin-guide/media/imx.rst
F: Documentation/devicetree/bindings/media/imx.txt F: Documentation/devicetree/bindings/media/imx.txt
F: drivers/staging/media/imx/ F: drivers/staging/media/imx/
...@@ -14204,7 +14204,7 @@ M: Martin Kepplinger <martin.kepplinger@puri.sm> ...@@ -14204,7 +14204,7 @@ M: Martin Kepplinger <martin.kepplinger@puri.sm>
R: Purism Kernel Team <kernel@puri.sm> R: Purism Kernel Team <kernel@puri.sm>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/imx7.rst F: Documentation/admin-guide/media/imx7.rst
F: Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml F: Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
...@@ -14219,7 +14219,7 @@ L: linux-media@vger.kernel.org ...@@ -14219,7 +14219,7 @@ L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
W: http://netup.tv/ W: http://netup.tv/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/helene* F: drivers/media/dvb-frontends/helene*
   
MEDIA DRIVERS FOR HORUS3A MEDIA DRIVERS FOR HORUS3A
...@@ -14228,7 +14228,7 @@ L: linux-media@vger.kernel.org ...@@ -14228,7 +14228,7 @@ L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
W: http://netup.tv/ W: http://netup.tv/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/horus3a* F: drivers/media/dvb-frontends/horus3a*
   
MEDIA DRIVERS FOR LNBH25 MEDIA DRIVERS FOR LNBH25
...@@ -14237,14 +14237,14 @@ L: linux-media@vger.kernel.org ...@@ -14237,14 +14237,14 @@ L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
W: http://netup.tv/ W: http://netup.tv/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/lnbh25* F: drivers/media/dvb-frontends/lnbh25*
   
MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/mxl5xx* F: drivers/media/dvb-frontends/mxl5xx*
   
MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
...@@ -14253,7 +14253,7 @@ L: linux-media@vger.kernel.org ...@@ -14253,7 +14253,7 @@ L: linux-media@vger.kernel.org
S: Supported S: Supported
W: https://linuxtv.org W: https://linuxtv.org
W: http://netup.tv/ W: http://netup.tv/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/netup_unidvb/* F: drivers/media/pci/netup_unidvb/*
   
MEDIA DRIVERS FOR NVIDIA TEGRA - VDE MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
...@@ -14261,7 +14261,7 @@ M: Dmitry Osipenko <digetx@gmail.com> ...@@ -14261,7 +14261,7 @@ M: Dmitry Osipenko <digetx@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-tegra@vger.kernel.org L: linux-tegra@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
F: drivers/media/platform/nvidia/tegra-vde/ F: drivers/media/platform/nvidia/tegra-vde/
   
...@@ -14270,7 +14270,7 @@ M: Jacopo Mondi <jacopo@jmondi.org> ...@@ -14270,7 +14270,7 @@ M: Jacopo Mondi <jacopo@jmondi.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-renesas-soc@vger.kernel.org L: linux-renesas-soc@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/renesas,ceu.yaml F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
F: drivers/media/platform/renesas/renesas-ceu.c F: drivers/media/platform/renesas/renesas-ceu.c
F: include/media/drv-intf/renesas-ceu.h F: include/media/drv-intf/renesas-ceu.h
...@@ -14280,7 +14280,7 @@ M: Fabrizio Castro <fabrizio.castro.jz@renesas.com> ...@@ -14280,7 +14280,7 @@ M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-renesas-soc@vger.kernel.org L: linux-renesas-soc@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/renesas,drif.yaml F: Documentation/devicetree/bindings/media/renesas,drif.yaml
F: drivers/media/platform/renesas/rcar_drif.c F: drivers/media/platform/renesas/rcar_drif.c
   
...@@ -14289,7 +14289,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> ...@@ -14289,7 +14289,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-renesas-soc@vger.kernel.org L: linux-renesas-soc@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/renesas,fcp.yaml F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
F: drivers/media/platform/renesas/rcar-fcp.c F: drivers/media/platform/renesas/rcar-fcp.c
F: include/media/rcar-fcp.h F: include/media/rcar-fcp.h
...@@ -14299,7 +14299,7 @@ M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> ...@@ -14299,7 +14299,7 @@ M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-renesas-soc@vger.kernel.org L: linux-renesas-soc@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
F: drivers/media/platform/renesas/rcar_fdp1.c F: drivers/media/platform/renesas/rcar_fdp1.c
   
...@@ -14308,7 +14308,7 @@ M: Niklas Söderlund <niklas.soderlund@ragnatech.se> ...@@ -14308,7 +14308,7 @@ M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-renesas-soc@vger.kernel.org L: linux-renesas-soc@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/renesas,csi2.yaml F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
F: Documentation/devicetree/bindings/media/renesas,isp.yaml F: Documentation/devicetree/bindings/media/renesas,isp.yaml
F: Documentation/devicetree/bindings/media/renesas,vin.yaml F: Documentation/devicetree/bindings/media/renesas,vin.yaml
...@@ -14322,7 +14322,7 @@ M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> ...@@ -14322,7 +14322,7 @@ M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-renesas-soc@vger.kernel.org L: linux-renesas-soc@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
F: drivers/media/platform/renesas/vsp1/ F: drivers/media/platform/renesas/vsp1/
   
...@@ -14330,14 +14330,14 @@ MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs ...@@ -14330,14 +14330,14 @@ MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/stv0910* F: drivers/media/dvb-frontends/stv0910*
   
MEDIA DRIVERS FOR ST STV6111 TUNER ICs MEDIA DRIVERS FOR ST STV6111 TUNER ICs
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/dvb-frontends/stv6111* F: drivers/media/dvb-frontends/stv6111*
   
MEDIA DRIVERS FOR STM32 - DCMI / DCMIPP MEDIA DRIVERS FOR STM32 - DCMI / DCMIPP
...@@ -14345,7 +14345,7 @@ M: Hugues Fruchet <hugues.fruchet@foss.st.com> ...@@ -14345,7 +14345,7 @@ M: Hugues Fruchet <hugues.fruchet@foss.st.com>
M: Alain Volmat <alain.volmat@foss.st.com> M: Alain Volmat <alain.volmat@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
F: Documentation/devicetree/bindings/media/st,stm32-dcmipp.yaml F: Documentation/devicetree/bindings/media/st,stm32-dcmipp.yaml
F: drivers/media/platform/st/stm32/stm32-dcmi.c F: drivers/media/platform/st/stm32/stm32-dcmi.c
...@@ -14357,7 +14357,7 @@ L: linux-media@vger.kernel.org ...@@ -14357,7 +14357,7 @@ L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
Q: http://patchwork.kernel.org/project/linux-media/list/ Q: http://patchwork.kernel.org/project/linux-media/list/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/admin-guide/media/ F: Documentation/admin-guide/media/
F: Documentation/devicetree/bindings/media/ F: Documentation/devicetree/bindings/media/
F: Documentation/driver-api/media/ F: Documentation/driver-api/media/
...@@ -14933,7 +14933,7 @@ L: linux-media@vger.kernel.org ...@@ -14933,7 +14933,7 @@ L: linux-media@vger.kernel.org
L: linux-amlogic@lists.infradead.org L: linux-amlogic@lists.infradead.org
S: Supported S: Supported
W: http://linux-meson.com/ W: http://linux-meson.com/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml F: Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
F: drivers/media/cec/platform/meson/ao-cec-g12a.c F: drivers/media/cec/platform/meson/ao-cec-g12a.c
F: drivers/media/cec/platform/meson/ao-cec.c F: drivers/media/cec/platform/meson/ao-cec.c
...@@ -14943,7 +14943,7 @@ M: Neil Armstrong <neil.armstrong@linaro.org> ...@@ -14943,7 +14943,7 @@ M: Neil Armstrong <neil.armstrong@linaro.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-amlogic@lists.infradead.org L: linux-amlogic@lists.infradead.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
F: drivers/media/platform/amlogic/meson-ge2d/ F: drivers/media/platform/amlogic/meson-ge2d/
   
...@@ -14959,7 +14959,7 @@ M: Neil Armstrong <neil.armstrong@linaro.org> ...@@ -14959,7 +14959,7 @@ M: Neil Armstrong <neil.armstrong@linaro.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-amlogic@lists.infradead.org L: linux-amlogic@lists.infradead.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
F: drivers/staging/media/meson/vdec/ F: drivers/staging/media/meson/vdec/
   
...@@ -15557,7 +15557,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -15557,7 +15557,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-miropcm20* F: drivers/media/radio/radio-miropcm20*
   
MITSUMI MM8013 FG DRIVER MITSUMI MM8013 FG DRIVER
...@@ -15709,7 +15709,7 @@ MR800 AVERMEDIA USB FM RADIO DRIVER ...@@ -15709,7 +15709,7 @@ MR800 AVERMEDIA USB FM RADIO DRIVER
M: Alexey Klimov <klimov.linux@gmail.com> M: Alexey Klimov <klimov.linux@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-mr800.c F: drivers/media/radio/radio-mr800.c
   
MRF24J40 IEEE 802.15.4 RADIO DRIVER MRF24J40 IEEE 802.15.4 RADIO DRIVER
...@@ -15776,7 +15776,7 @@ MT9M114 ONSEMI SENSOR DRIVER ...@@ -15776,7 +15776,7 @@ MT9M114 ONSEMI SENSOR DRIVER
M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/onnn,mt9m114.yaml F: Documentation/devicetree/bindings/media/i2c/onnn,mt9m114.yaml
F: drivers/media/i2c/mt9m114.c F: drivers/media/i2c/mt9m114.c
   
...@@ -15784,7 +15784,7 @@ MT9P031 APTINA CAMERA SENSOR ...@@ -15784,7 +15784,7 @@ MT9P031 APTINA CAMERA SENSOR
M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml F: Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
F: drivers/media/i2c/mt9p031.c F: drivers/media/i2c/mt9p031.c
F: include/media/i2c/mt9p031.h F: include/media/i2c/mt9p031.h
...@@ -15793,7 +15793,7 @@ MT9T112 APTINA CAMERA SENSOR ...@@ -15793,7 +15793,7 @@ MT9T112 APTINA CAMERA SENSOR
M: Jacopo Mondi <jacopo@jmondi.org> M: Jacopo Mondi <jacopo@jmondi.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/mt9t112.c F: drivers/media/i2c/mt9t112.c
F: include/media/i2c/mt9t112.h F: include/media/i2c/mt9t112.h
   
...@@ -15801,7 +15801,7 @@ MT9V032 APTINA CAMERA SENSOR ...@@ -15801,7 +15801,7 @@ MT9V032 APTINA CAMERA SENSOR
M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
F: drivers/media/i2c/mt9v032.c F: drivers/media/i2c/mt9v032.c
F: include/media/i2c/mt9v032.h F: include/media/i2c/mt9v032.h
...@@ -15810,7 +15810,7 @@ MT9V111 APTINA CAMERA SENSOR ...@@ -15810,7 +15810,7 @@ MT9V111 APTINA CAMERA SENSOR
M: Jacopo Mondi <jacopo@jmondi.org> M: Jacopo Mondi <jacopo@jmondi.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
F: drivers/media/i2c/mt9v111.c F: drivers/media/i2c/mt9v111.c
   
...@@ -17005,13 +17005,13 @@ OMNIVISION OV01A10 SENSOR DRIVER ...@@ -17005,13 +17005,13 @@ OMNIVISION OV01A10 SENSOR DRIVER
M: Bingbu Cao <bingbu.cao@intel.com> M: Bingbu Cao <bingbu.cao@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov01a10.c F: drivers/media/i2c/ov01a10.c
   
OMNIVISION OV02A10 SENSOR DRIVER OMNIVISION OV02A10 SENSOR DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
F: drivers/media/i2c/ov02a10.c F: drivers/media/i2c/ov02a10.c
   
...@@ -17019,28 +17019,28 @@ OMNIVISION OV08D10 SENSOR DRIVER ...@@ -17019,28 +17019,28 @@ OMNIVISION OV08D10 SENSOR DRIVER
M: Jimmy Su <jimmy.su@intel.com> M: Jimmy Su <jimmy.su@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov08d10.c F: drivers/media/i2c/ov08d10.c
   
OMNIVISION OV08X40 SENSOR DRIVER OMNIVISION OV08X40 SENSOR DRIVER
M: Jason Chen <jason.z.chen@intel.com> M: Jason Chen <jason.z.chen@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov08x40.c F: drivers/media/i2c/ov08x40.c
   
OMNIVISION OV13858 SENSOR DRIVER OMNIVISION OV13858 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov13858.c F: drivers/media/i2c/ov13858.c
   
OMNIVISION OV13B10 SENSOR DRIVER OMNIVISION OV13B10 SENSOR DRIVER
M: Arec Kao <arec.kao@intel.com> M: Arec Kao <arec.kao@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov13b10.c F: drivers/media/i2c/ov13b10.c
   
OMNIVISION OV2680 SENSOR DRIVER OMNIVISION OV2680 SENSOR DRIVER
...@@ -17048,7 +17048,7 @@ M: Rui Miguel Silva <rmfrfs@gmail.com> ...@@ -17048,7 +17048,7 @@ M: Rui Miguel Silva <rmfrfs@gmail.com>
M: Hans de Goede <hansg@kernel.org> M: Hans de Goede <hansg@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
F: drivers/media/i2c/ov2680.c F: drivers/media/i2c/ov2680.c
   
...@@ -17056,7 +17056,7 @@ OMNIVISION OV2685 SENSOR DRIVER ...@@ -17056,7 +17056,7 @@ OMNIVISION OV2685 SENSOR DRIVER
M: Shunqian Zheng <zhengsq@rock-chips.com> M: Shunqian Zheng <zhengsq@rock-chips.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
F: drivers/media/i2c/ov2685.c F: drivers/media/i2c/ov2685.c
   
...@@ -17066,14 +17066,14 @@ R: Sakari Ailus <sakari.ailus@linux.intel.com> ...@@ -17066,14 +17066,14 @@ R: Sakari Ailus <sakari.ailus@linux.intel.com>
R: Bingbu Cao <bingbu.cao@intel.com> R: Bingbu Cao <bingbu.cao@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov2740.c F: drivers/media/i2c/ov2740.c
   
OMNIVISION OV4689 SENSOR DRIVER OMNIVISION OV4689 SENSOR DRIVER
M: Mikhail Rudenko <mike.rudenko@gmail.com> M: Mikhail Rudenko <mike.rudenko@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
F: drivers/media/i2c/ov4689.c F: drivers/media/i2c/ov4689.c
   
...@@ -17081,7 +17081,7 @@ OMNIVISION OV5640 SENSOR DRIVER ...@@ -17081,7 +17081,7 @@ OMNIVISION OV5640 SENSOR DRIVER
M: Steve Longerbeam <slongerbeam@gmail.com> M: Steve Longerbeam <slongerbeam@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov5640.c F: drivers/media/i2c/ov5640.c
   
OMNIVISION OV5647 SENSOR DRIVER OMNIVISION OV5647 SENSOR DRIVER
...@@ -17089,7 +17089,7 @@ M: Dave Stevenson <dave.stevenson@raspberrypi.com> ...@@ -17089,7 +17089,7 @@ M: Dave Stevenson <dave.stevenson@raspberrypi.com>
M: Jacopo Mondi <jacopo@jmondi.org> M: Jacopo Mondi <jacopo@jmondi.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
F: drivers/media/i2c/ov5647.c F: drivers/media/i2c/ov5647.c
   
...@@ -17097,7 +17097,7 @@ OMNIVISION OV5670 SENSOR DRIVER ...@@ -17097,7 +17097,7 @@ OMNIVISION OV5670 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
F: drivers/media/i2c/ov5670.c F: drivers/media/i2c/ov5670.c
   
...@@ -17105,7 +17105,7 @@ OMNIVISION OV5675 SENSOR DRIVER ...@@ -17105,7 +17105,7 @@ OMNIVISION OV5675 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
F: drivers/media/i2c/ov5675.c F: drivers/media/i2c/ov5675.c
   
...@@ -17113,7 +17113,7 @@ OMNIVISION OV5693 SENSOR DRIVER ...@@ -17113,7 +17113,7 @@ OMNIVISION OV5693 SENSOR DRIVER
M: Daniel Scally <djrscally@gmail.com> M: Daniel Scally <djrscally@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
F: drivers/media/i2c/ov5693.c F: drivers/media/i2c/ov5693.c
   
...@@ -17121,21 +17121,21 @@ OMNIVISION OV5695 SENSOR DRIVER ...@@ -17121,21 +17121,21 @@ OMNIVISION OV5695 SENSOR DRIVER
M: Shunqian Zheng <zhengsq@rock-chips.com> M: Shunqian Zheng <zhengsq@rock-chips.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov5695.c F: drivers/media/i2c/ov5695.c
   
OMNIVISION OV64A40 SENSOR DRIVER OMNIVISION OV64A40 SENSOR DRIVER
M: Jacopo Mondi <jacopo.mondi@ideasonboard.com> M: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov64a40.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov64a40.yaml
F: drivers/media/i2c/ov64a40.c F: drivers/media/i2c/ov64a40.c
   
OMNIVISION OV7670 SENSOR DRIVER OMNIVISION OV7670 SENSOR DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ov7670.txt F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
F: drivers/media/i2c/ov7670.c F: drivers/media/i2c/ov7670.c
   
...@@ -17143,7 +17143,7 @@ OMNIVISION OV772x SENSOR DRIVER ...@@ -17143,7 +17143,7 @@ OMNIVISION OV772x SENSOR DRIVER
M: Jacopo Mondi <jacopo@jmondi.org> M: Jacopo Mondi <jacopo@jmondi.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
F: drivers/media/i2c/ov772x.c F: drivers/media/i2c/ov772x.c
F: include/media/i2c/ov772x.h F: include/media/i2c/ov772x.h
...@@ -17151,7 +17151,7 @@ F: include/media/i2c/ov772x.h ...@@ -17151,7 +17151,7 @@ F: include/media/i2c/ov772x.h
OMNIVISION OV7740 SENSOR DRIVER OMNIVISION OV7740 SENSOR DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ov7740.txt F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
F: drivers/media/i2c/ov7740.c F: drivers/media/i2c/ov7740.c
   
...@@ -17159,7 +17159,7 @@ OMNIVISION OV8856 SENSOR DRIVER ...@@ -17159,7 +17159,7 @@ OMNIVISION OV8856 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov8856.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov8856.yaml
F: drivers/media/i2c/ov8856.c F: drivers/media/i2c/ov8856.c
   
...@@ -17168,7 +17168,7 @@ M: Jacopo Mondi <jacopo.mondi@ideasonboard.com> ...@@ -17168,7 +17168,7 @@ M: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
M: Nicholas Roth <nicholas@rothemail.net> M: Nicholas Roth <nicholas@rothemail.net>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
F: drivers/media/i2c/ov8858.c F: drivers/media/i2c/ov8858.c
   
...@@ -17176,7 +17176,7 @@ OMNIVISION OV9282 SENSOR DRIVER ...@@ -17176,7 +17176,7 @@ OMNIVISION OV9282 SENSOR DRIVER
M: Dave Stevenson <dave.stevenson@raspberrypi.com> M: Dave Stevenson <dave.stevenson@raspberrypi.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
F: drivers/media/i2c/ov9282.c F: drivers/media/i2c/ov9282.c
   
...@@ -17192,7 +17192,7 @@ R: Akinobu Mita <akinobu.mita@gmail.com> ...@@ -17192,7 +17192,7 @@ R: Akinobu Mita <akinobu.mita@gmail.com>
R: Sylwester Nawrocki <s.nawrocki@samsung.com> R: Sylwester Nawrocki <s.nawrocki@samsung.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/ov9650.txt F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
F: drivers/media/i2c/ov9650.c F: drivers/media/i2c/ov9650.c
   
...@@ -17201,7 +17201,7 @@ M: Tianshu Qiu <tian.shu.qiu@intel.com> ...@@ -17201,7 +17201,7 @@ M: Tianshu Qiu <tian.shu.qiu@intel.com>
R: Bingbu Cao <bingbu.cao@intel.com> R: Bingbu Cao <bingbu.cao@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/ov9734.c F: drivers/media/i2c/ov9734.c
   
ONBOARD USB HUB DRIVER ONBOARD USB HUB DRIVER
...@@ -18646,7 +18646,7 @@ PULSE8-CEC DRIVER ...@@ -18646,7 +18646,7 @@ PULSE8-CEC DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/cec/usb/pulse8/ F: drivers/media/cec/usb/pulse8/
   
PURELIFI PLFXLC DRIVER PURELIFI PLFXLC DRIVER
...@@ -18661,7 +18661,7 @@ L: pvrusb2@isely.net (subscribers-only) ...@@ -18661,7 +18661,7 @@ L: pvrusb2@isely.net (subscribers-only)
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: http://www.isely.net/pvrusb2/ W: http://www.isely.net/pvrusb2/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/driver-api/media/drivers/pvrusb2* F: Documentation/driver-api/media/drivers/pvrusb2*
F: drivers/media/usb/pvrusb2/ F: drivers/media/usb/pvrusb2/
   
...@@ -18669,7 +18669,7 @@ PWC WEBCAM DRIVER ...@@ -18669,7 +18669,7 @@ PWC WEBCAM DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/pwc/* F: drivers/media/usb/pwc/*
F: include/trace/events/pwc.h F: include/trace/events/pwc.h
   
...@@ -19173,7 +19173,7 @@ R: Bryan O'Donoghue <bryan.odonoghue@linaro.org> ...@@ -19173,7 +19173,7 @@ R: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
L: linux-arm-msm@vger.kernel.org L: linux-arm-msm@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/*venus* F: Documentation/devicetree/bindings/media/*venus*
F: drivers/media/platform/qcom/venus/ F: drivers/media/platform/qcom/venus/
   
...@@ -19218,14 +19218,14 @@ RADIOSHARK RADIO DRIVER ...@@ -19218,14 +19218,14 @@ RADIOSHARK RADIO DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-shark.c F: drivers/media/radio/radio-shark.c
   
RADIOSHARK2 RADIO DRIVER RADIOSHARK2 RADIO DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-shark2.c F: drivers/media/radio/radio-shark2.c
F: drivers/media/radio/radio-tea5777.c F: drivers/media/radio/radio-tea5777.c
   
...@@ -19249,7 +19249,7 @@ RAINSHADOW-CEC DRIVER ...@@ -19249,7 +19249,7 @@ RAINSHADOW-CEC DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/cec/usb/rainshadow/ F: drivers/media/cec/usb/rainshadow/
   
RALINK MIPS ARCHITECTURE RALINK MIPS ARCHITECTURE
...@@ -19333,7 +19333,7 @@ M: Sean Young <sean@mess.org> ...@@ -19333,7 +19333,7 @@ M: Sean Young <sean@mess.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: http://linuxtv.org W: http://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/driver-api/media/rc-core.rst F: Documentation/driver-api/media/rc-core.rst
F: Documentation/userspace-api/media/rc/ F: Documentation/userspace-api/media/rc/
F: drivers/media/rc/ F: drivers/media/rc/
...@@ -20077,7 +20077,7 @@ ROTATION DRIVER FOR ALLWINNER A83T ...@@ -20077,7 +20077,7 @@ ROTATION DRIVER FOR ALLWINNER A83T
M: Jernej Skrabec <jernej.skrabec@gmail.com> M: Jernej Skrabec <jernej.skrabec@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
F: drivers/media/platform/sunxi/sun8i-rotate/ F: drivers/media/platform/sunxi/sun8i-rotate/
   
...@@ -20331,7 +20331,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -20331,7 +20331,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/saa6588* F: drivers/media/i2c/saa6588*
   
SAA7134 VIDEO4LINUX DRIVER SAA7134 VIDEO4LINUX DRIVER
...@@ -20339,7 +20339,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -20339,7 +20339,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/driver-api/media/drivers/saa7134* F: Documentation/driver-api/media/drivers/saa7134*
F: drivers/media/pci/saa7134/ F: drivers/media/pci/saa7134/
   
...@@ -20347,7 +20347,7 @@ SAA7146 VIDEO4LINUX-2 DRIVER ...@@ -20347,7 +20347,7 @@ SAA7146 VIDEO4LINUX-2 DRIVER
M: Hans Verkuil <hverkuil@xs4all.nl> M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/common/saa7146/ F: drivers/media/common/saa7146/
F: drivers/media/pci/saa7146/ F: drivers/media/pci/saa7146/
F: include/media/drv-intf/saa7146* F: include/media/drv-intf/saa7146*
...@@ -20965,7 +20965,7 @@ SHARP RJ54N1CB0C SENSOR DRIVER ...@@ -20965,7 +20965,7 @@ SHARP RJ54N1CB0C SENSOR DRIVER
M: Jacopo Mondi <jacopo@jmondi.org> M: Jacopo Mondi <jacopo@jmondi.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/rj54n1cb0c.c F: drivers/media/i2c/rj54n1cb0c.c
F: include/media/i2c/rj54n1cb0c.h F: include/media/i2c/rj54n1cb0c.h
   
...@@ -21015,7 +21015,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -21015,7 +21015,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/silabs,si470x.yaml F: Documentation/devicetree/bindings/media/silabs,si470x.yaml
F: drivers/media/radio/si470x/radio-si470x-i2c.c F: drivers/media/radio/si470x/radio-si470x-i2c.c
   
...@@ -21024,7 +21024,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -21024,7 +21024,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/si470x/radio-si470x-common.c F: drivers/media/radio/si470x/radio-si470x-common.c
F: drivers/media/radio/si470x/radio-si470x-usb.c F: drivers/media/radio/si470x/radio-si470x-usb.c
F: drivers/media/radio/si470x/radio-si470x.h F: drivers/media/radio/si470x/radio-si470x.h
...@@ -21034,7 +21034,7 @@ M: Eduardo Valentin <edubezval@gmail.com> ...@@ -21034,7 +21034,7 @@ M: Eduardo Valentin <edubezval@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/si4713/si4713.? F: drivers/media/radio/si4713/si4713.?
   
SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
...@@ -21042,7 +21042,7 @@ M: Eduardo Valentin <edubezval@gmail.com> ...@@ -21042,7 +21042,7 @@ M: Eduardo Valentin <edubezval@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/si4713/radio-platform-si4713.c F: drivers/media/radio/si4713/radio-platform-si4713.c
   
SI4713 FM RADIO TRANSMITTER USB DRIVER SI4713 FM RADIO TRANSMITTER USB DRIVER
...@@ -21050,7 +21050,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -21050,7 +21050,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/si4713/radio-usb-si4713.c F: drivers/media/radio/si4713/radio-usb-si4713.c
   
SIANO DVB DRIVER SIANO DVB DRIVER
...@@ -21058,7 +21058,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -21058,7 +21058,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/common/siano/ F: drivers/media/common/siano/
F: drivers/media/mmc/siano/ F: drivers/media/mmc/siano/
F: drivers/media/usb/siano/ F: drivers/media/usb/siano/
...@@ -21434,14 +21434,14 @@ SONY IMX208 SENSOR DRIVER ...@@ -21434,14 +21434,14 @@ SONY IMX208 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/imx208.c F: drivers/media/i2c/imx208.c
   
SONY IMX214 SENSOR DRIVER SONY IMX214 SENSOR DRIVER
M: Ricardo Ribalda <ribalda@kernel.org> M: Ricardo Ribalda <ribalda@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
F: drivers/media/i2c/imx214.c F: drivers/media/i2c/imx214.c
   
...@@ -21449,7 +21449,7 @@ SONY IMX219 SENSOR DRIVER ...@@ -21449,7 +21449,7 @@ SONY IMX219 SENSOR DRIVER
M: Dave Stevenson <dave.stevenson@raspberrypi.com> M: Dave Stevenson <dave.stevenson@raspberrypi.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/imx219.yaml F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
F: drivers/media/i2c/imx219.c F: drivers/media/i2c/imx219.c
   
...@@ -21457,7 +21457,7 @@ SONY IMX258 SENSOR DRIVER ...@@ -21457,7 +21457,7 @@ SONY IMX258 SENSOR DRIVER
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx258.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx258.yaml
F: drivers/media/i2c/imx258.c F: drivers/media/i2c/imx258.c
   
...@@ -21465,7 +21465,7 @@ SONY IMX274 SENSOR DRIVER ...@@ -21465,7 +21465,7 @@ SONY IMX274 SENSOR DRIVER
M: Leon Luo <leonl@leopardimaging.com> M: Leon Luo <leonl@leopardimaging.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
F: drivers/media/i2c/imx274.c F: drivers/media/i2c/imx274.c
   
...@@ -21474,7 +21474,7 @@ M: Kieran Bingham <kieran.bingham@ideasonboard.com> ...@@ -21474,7 +21474,7 @@ M: Kieran Bingham <kieran.bingham@ideasonboard.com>
M: Umang Jain <umang.jain@ideasonboard.com> M: Umang Jain <umang.jain@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx283.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx283.yaml
F: drivers/media/i2c/imx283.c F: drivers/media/i2c/imx283.c
   
...@@ -21482,7 +21482,7 @@ SONY IMX290 SENSOR DRIVER ...@@ -21482,7 +21482,7 @@ SONY IMX290 SENSOR DRIVER
M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
F: drivers/media/i2c/imx290.c F: drivers/media/i2c/imx290.c
   
...@@ -21491,7 +21491,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> ...@@ -21491,7 +21491,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
F: drivers/media/i2c/imx296.c F: drivers/media/i2c/imx296.c
   
...@@ -21499,20 +21499,20 @@ SONY IMX319 SENSOR DRIVER ...@@ -21499,20 +21499,20 @@ SONY IMX319 SENSOR DRIVER
M: Bingbu Cao <bingbu.cao@intel.com> M: Bingbu Cao <bingbu.cao@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/imx319.c F: drivers/media/i2c/imx319.c
   
SONY IMX334 SENSOR DRIVER SONY IMX334 SENSOR DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
F: drivers/media/i2c/imx334.c F: drivers/media/i2c/imx334.c
   
SONY IMX335 SENSOR DRIVER SONY IMX335 SENSOR DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
F: drivers/media/i2c/imx335.c F: drivers/media/i2c/imx335.c
   
...@@ -21520,13 +21520,13 @@ SONY IMX355 SENSOR DRIVER ...@@ -21520,13 +21520,13 @@ SONY IMX355 SENSOR DRIVER
M: Tianshu Qiu <tian.shu.qiu@intel.com> M: Tianshu Qiu <tian.shu.qiu@intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/imx355.c F: drivers/media/i2c/imx355.c
   
SONY IMX412 SENSOR DRIVER SONY IMX412 SENSOR DRIVER
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Orphan S: Orphan
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
F: drivers/media/i2c/imx412.c F: drivers/media/i2c/imx412.c
   
...@@ -21534,7 +21534,7 @@ SONY IMX415 SENSOR DRIVER ...@@ -21534,7 +21534,7 @@ SONY IMX415 SENSOR DRIVER
M: Michael Riesch <michael.riesch@wolfvision.net> M: Michael Riesch <michael.riesch@wolfvision.net>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml F: Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
F: drivers/media/i2c/imx415.c F: drivers/media/i2c/imx415.c
   
...@@ -21823,7 +21823,7 @@ M: Benjamin Mugnier <benjamin.mugnier@foss.st.com> ...@@ -21823,7 +21823,7 @@ M: Benjamin Mugnier <benjamin.mugnier@foss.st.com>
M: Sylvain Petinot <sylvain.petinot@foss.st.com> M: Sylvain Petinot <sylvain.petinot@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
F: drivers/media/i2c/st-mipid02.c F: drivers/media/i2c/st-mipid02.c
   
...@@ -21859,7 +21859,7 @@ M: Benjamin Mugnier <benjamin.mugnier@foss.st.com> ...@@ -21859,7 +21859,7 @@ M: Benjamin Mugnier <benjamin.mugnier@foss.st.com>
M: Sylvain Petinot <sylvain.petinot@foss.st.com> M: Sylvain Petinot <sylvain.petinot@foss.st.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml F: Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
F: Documentation/userspace-api/media/drivers/vgxy61.rst F: Documentation/userspace-api/media/drivers/vgxy61.rst
F: drivers/media/i2c/vgxy61.c F: drivers/media/i2c/vgxy61.c
...@@ -22149,7 +22149,7 @@ STK1160 USB VIDEO CAPTURE DRIVER ...@@ -22149,7 +22149,7 @@ STK1160 USB VIDEO CAPTURE DRIVER
M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/stk1160/ F: drivers/media/usb/stk1160/
   
STM32 AUDIO (ASoC) DRIVERS STM32 AUDIO (ASoC) DRIVERS
...@@ -22586,7 +22586,7 @@ L: linux-media@vger.kernel.org ...@@ -22586,7 +22586,7 @@ L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
Q: http://patchwork.linuxtv.org/project/linux-media/list/ Q: http://patchwork.linuxtv.org/project/linux-media/list/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/tuners/tda18250* F: drivers/media/tuners/tda18250*
   
TDA18271 MEDIA DRIVER TDA18271 MEDIA DRIVER
...@@ -22632,7 +22632,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -22632,7 +22632,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/tda9840* F: drivers/media/i2c/tda9840*
   
TEA5761 TUNER DRIVER TEA5761 TUNER DRIVER
...@@ -22640,7 +22640,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -22640,7 +22640,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd fixes S: Odd fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/tuners/tea5761.* F: drivers/media/tuners/tea5761.*
   
TEA5767 TUNER DRIVER TEA5767 TUNER DRIVER
...@@ -22648,7 +22648,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -22648,7 +22648,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/tuners/tea5767.* F: drivers/media/tuners/tea5767.*
   
TEA6415C MEDIA DRIVER TEA6415C MEDIA DRIVER
...@@ -22656,7 +22656,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -22656,7 +22656,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/tea6415c* F: drivers/media/i2c/tea6415c*
   
TEA6420 MEDIA DRIVER TEA6420 MEDIA DRIVER
...@@ -22664,7 +22664,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -22664,7 +22664,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/i2c/tea6420* F: drivers/media/i2c/tea6420*
   
TEAM DRIVER TEAM DRIVER
...@@ -22952,7 +22952,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -22952,7 +22952,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/radio/radio-raremono.c F: drivers/media/radio/radio-raremono.c
   
THERMAL THERMAL
...@@ -23028,7 +23028,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> ...@@ -23028,7 +23028,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
M: Paul Elder <paul.elder@ideasonboard.com> M: Paul Elder <paul.elder@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/i2c/thine,thp7312.yaml F: Documentation/devicetree/bindings/media/i2c/thine,thp7312.yaml
F: Documentation/userspace-api/media/drivers/thp7312.rst F: Documentation/userspace-api/media/drivers/thp7312.rst
F: drivers/media/i2c/thp7312.c F: drivers/media/i2c/thp7312.c
...@@ -23615,7 +23615,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -23615,7 +23615,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Odd Fixes S: Odd Fixes
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/tw68/ F: drivers/media/pci/tw68/
   
TW686X VIDEO4LINUX DRIVER TW686X VIDEO4LINUX DRIVER
...@@ -23623,7 +23623,7 @@ M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> ...@@ -23623,7 +23623,7 @@ M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: http://linuxtv.org W: http://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/pci/tw686x/ F: drivers/media/pci/tw686x/
   
U-BOOT ENVIRONMENT VARIABLES U-BOOT ENVIRONMENT VARIABLES
...@@ -24106,7 +24106,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> ...@@ -24106,7 +24106,7 @@ M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: http://www.ideasonboard.org/uvc/ W: http://www.ideasonboard.org/uvc/
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/usb/uvc/ F: drivers/media/usb/uvc/
F: include/uapi/linux/uvcvideo.h F: include/uapi/linux/uvcvideo.h
   
...@@ -24212,7 +24212,7 @@ V4L2 ASYNC AND FWNODE FRAMEWORKS ...@@ -24212,7 +24212,7 @@ V4L2 ASYNC AND FWNODE FRAMEWORKS
M: Sakari Ailus <sakari.ailus@linux.intel.com> M: Sakari Ailus <sakari.ailus@linux.intel.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/v4l2-core/v4l2-async.c F: drivers/media/v4l2-core/v4l2-async.c
F: drivers/media/v4l2-core/v4l2-fwnode.c F: drivers/media/v4l2-core/v4l2-fwnode.c
F: include/media/v4l2-async.h F: include/media/v4l2-async.h
...@@ -24378,7 +24378,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl> ...@@ -24378,7 +24378,7 @@ M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/test-drivers/vicodec/* F: drivers/media/test-drivers/vicodec/*
   
VIDEO I2C POLLING DRIVER VIDEO I2C POLLING DRIVER
...@@ -24406,7 +24406,7 @@ M: Daniel W. S. Almeida <dwlsalmeida@gmail.com> ...@@ -24406,7 +24406,7 @@ M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/test-drivers/vidtv/* F: drivers/media/test-drivers/vidtv/*
   
VIMC VIRTUAL MEDIA CONTROLLER DRIVER VIMC VIRTUAL MEDIA CONTROLLER DRIVER
...@@ -24415,7 +24415,7 @@ R: Kieran Bingham <kieran.bingham@ideasonboard.com> ...@@ -24415,7 +24415,7 @@ R: Kieran Bingham <kieran.bingham@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/test-drivers/vimc/* F: drivers/media/test-drivers/vimc/*
   
VIRT LIB VIRT LIB
...@@ -24663,7 +24663,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl> ...@@ -24663,7 +24663,7 @@ M: Hans Verkuil <hverkuil@xs4all.nl>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/test-drivers/vivid/* F: drivers/media/test-drivers/vivid/*
   
VM SOCKETS (AF_VSOCK) VM SOCKETS (AF_VSOCK)
...@@ -25217,7 +25217,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org> ...@@ -25217,7 +25217,7 @@ M: Mauro Carvalho Chehab <mchehab@kernel.org>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Maintained S: Maintained
W: https://linuxtv.org W: https://linuxtv.org
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: drivers/media/tuners/xc2028.* F: drivers/media/tuners/xc2028.*
   
XDP (eXpress Data Path) XDP (eXpress Data Path)
...@@ -25358,8 +25358,7 @@ F: include/xen/arm/swiotlb-xen.h ...@@ -25358,8 +25358,7 @@ F: include/xen/arm/swiotlb-xen.h
F: include/xen/swiotlb-xen.h F: include/xen/swiotlb-xen.h
   
XFS FILESYSTEM XFS FILESYSTEM
M: Carlos Maiolino <cem@kernel.org> M: Darrick J. Wong <djwong@kernel.org>
R: Darrick J. Wong <djwong@kernel.org>
L: linux-xfs@vger.kernel.org L: linux-xfs@vger.kernel.org
S: Supported S: Supported
W: http://xfs.org/ W: http://xfs.org/
...@@ -25441,7 +25440,7 @@ XILINX VIDEO IP CORES ...@@ -25441,7 +25440,7 @@ XILINX VIDEO IP CORES
M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L: linux-media@vger.kernel.org L: linux-media@vger.kernel.org
S: Supported S: Supported
T: git git://linuxtv.org/media_tree.git T: git git://linuxtv.org/media.git
F: Documentation/devicetree/bindings/media/xilinx/ F: Documentation/devicetree/bindings/media/xilinx/
F: drivers/media/platform/xilinx/ F: drivers/media/platform/xilinx/
F: include/uapi/linux/xilinx-v4l2-controls.h F: include/uapi/linux/xilinx-v4l2-controls.h
......
# SPDX-License-Identifier: GPL-2.0 # SPDX-License-Identifier: GPL-2.0
VERSION = 6 VERSION = 6
PATCHLEVEL = 12 PATCHLEVEL = 12
SUBLEVEL = 1 SUBLEVEL = 4
EXTRAVERSION = EXTRAVERSION =
NAME = Baby Opossum Posse NAME = Baby Opossum Posse
......
...@@ -62,7 +62,7 @@ const struct machine_desc * __init setup_machine_fdt(void *dt) ...@@ -62,7 +62,7 @@ const struct machine_desc * __init setup_machine_fdt(void *dt)
const struct machine_desc *mdesc; const struct machine_desc *mdesc;
unsigned long dt_root; unsigned long dt_root;
if (!early_init_dt_scan(dt)) if (!early_init_dt_scan(dt, __pa(dt)))
return NULL; return NULL;
mdesc = of_flat_dt_match_machine(NULL, arch_get_next_mach); mdesc = of_flat_dt_match_machine(NULL, arch_get_next_mach);
......