mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
a080a92a6f
Commitf7b4b54e63
("[media] tvp5150: add HW input connectors support") added input signals support for the tvp5150, but the approach was found to be incorrect so the corresponding DT binding commit82c2ffeb21
("[media] tvp5150: document input connectors DT bindings") was reverted. This left the driver with an undocumented (and wrong) DT parsing logic, so lets get rid of this code as well until the input connectors support is implemented properly. It's a partial revert due other patches added on top of mentioned commit not allowing the commit to be reverted cleanly anymore. But all the code related to the DT parsing logic and input entities creation are removed. Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> [m.felsch@pengutronix.de: rm TVP5150_INPUT_NUM define] Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
22 lines
477 B
C
22 lines
477 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
tvp5150.h - definition for tvp5150 inputs
|
|
|
|
Copyright (C) 2006 Hans Verkuil (hverkuil@xs4all.nl)
|
|
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_MEDIA_TVP5150_H
|
|
#define _DT_BINDINGS_MEDIA_TVP5150_H
|
|
|
|
/* TVP5150 HW inputs */
|
|
#define TVP5150_COMPOSITE0 0
|
|
#define TVP5150_COMPOSITE1 1
|
|
#define TVP5150_SVIDEO 2
|
|
|
|
/* TVP5150 HW outputs */
|
|
#define TVP5150_NORMAL 0
|
|
#define TVP5150_BLACK_SCREEN 1
|
|
|
|
#endif /* _DT_BINDINGS_MEDIA_TVP5150_H */
|