Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c671f7b5 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "adv7481: Add driver code for adv7481"

parents eb8518b6 83f5dcca
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
* Qualcomm Technologies Inc MSM BA

[Root level node]
=====
Required properties:
- compatible :			Must be "qcom,msm-ba".
- status :				A string that has to be set to "okay/ok" to enable
						the driver. By default this property will be set to
						"disable". Will be set to "ok/okay" status for
						specific platforms.

Example:

	qcom,ba {
		compatible = "qcom,msm-ba";
		status = "disable";
	};
+18 −0
Original line number Diff line number Diff line
/* Copyright (c) 2015, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

&soc {
	msm_ba: qcom,ba {
		compatible = "qcom,msm-ba";
		status = "ok";
	};
};
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@

#include "msm8996-pinctrl.dtsi"
#include "apq8096-camera-sensor-dragonboard.dtsi"
#include "apq8096-ba.dtsi"

/ {
	bluetooth: bt_qca6174 {
+13 −0
Original line number Diff line number Diff line
@@ -218,6 +218,18 @@ config VIDEO_ADV7842
	  To compile this driver as a module, choose M here: the
	  module will be called adv7842.

config VIDEO_ADV7481
	tristate "Analog Devices ADV7481 decoder"
	depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && MEDIA_CONTROLLER
	---help---
	  Support for the Analog Devices ADV7481 video decoder.

	  This is a Analog Devices Component/Graphics/SD Digitizer
	  with HDMI Receiver.

	  To compile this driver as a module, choose M here: the
	  module will be called adv7481.

config VIDEO_BT819
	tristate "BT819A VideoStream decoder"
	depends on VIDEO_V4L2 && I2C
@@ -709,6 +721,7 @@ endmenu
menu "Sensors used on soc_camera driver"

if SOC_CAMERA

	source "drivers/media/i2c/soc_camera/Kconfig"
endif

+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ obj-$(CONFIG_VIDEO_ADV7343) += adv7343.o
obj-$(CONFIG_VIDEO_ADV7393) += adv7393.o
obj-$(CONFIG_VIDEO_ADV7604) += adv7604.o
obj-$(CONFIG_VIDEO_ADV7842) += adv7842.o
obj-$(CONFIG_VIDEO_ADV7481) += adv7481.o
obj-$(CONFIG_VIDEO_AD9389B) += ad9389b.o
obj-$(CONFIG_VIDEO_ADV7511) += adv7511.o
obj-$(CONFIG_VIDEO_VPX3220) += vpx3220.o
Loading