mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
4295485719
Boot tested on Raspberry Pi B+ (BCM2708) and Raspberry Pi 2 (BCM2709) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
934 B
Diff
25 lines
934 B
Diff
From 17310ae3261766d68d778d353b13970fb6c25810 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
Date: Wed, 31 Oct 2018 14:57:56 +0000
|
|
Subject: [PATCH 195/703] media: adv7180: Add YPrPb support for ADV7282M
|
|
|
|
The ADV7282M can support YPbPr on AIN1-3, but this was
|
|
not selectable from the driver. Add it to the list of
|
|
supported input modes.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
|
|
---
|
|
drivers/media/i2c/adv7180.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/media/i2c/adv7180.c
|
|
+++ b/drivers/media/i2c/adv7180.c
|
|
@@ -1229,6 +1229,7 @@ static const struct adv7180_chip_info ad
|
|
BIT(ADV7182_INPUT_SVIDEO_AIN1_AIN2) |
|
|
BIT(ADV7182_INPUT_SVIDEO_AIN3_AIN4) |
|
|
BIT(ADV7182_INPUT_SVIDEO_AIN7_AIN8) |
|
|
+ BIT(ADV7182_INPUT_YPRPB_AIN1_AIN2_AIN3) |
|
|
BIT(ADV7182_INPUT_DIFF_CVBS_AIN1_AIN2) |
|
|
BIT(ADV7182_INPUT_DIFF_CVBS_AIN3_AIN4) |
|
|
BIT(ADV7182_INPUT_DIFF_CVBS_AIN7_AIN8),
|