Millones de clientes al alcance de un clic.

2021-07-19 Thread Bases MX
DIRECTORIO EMPRESARIAL MEXICANO 2021 SE INCLUYEN INCLUYE 2 DIRECTORIOS COMPLETOS: A) Directorio Empresarial de mas de 2 millones de empresas a nivel nacional en formato Excel con DATOS COMPLETOS. (Nombre Empresa, Contacto, E-mail, Telefono, Direccion, Puesto, Giro, Pagina Web, TamaƱo de Empre

GREETHINGS

2021-07-19 Thread Jan Franssen
Dear Sir, My name is Mr. Jan Franssen, Chief Financial Officer, AME Capital Asset Management Limited here in London, United Kingdom; I have URGENT and discreet business proposal for you that shall benefit us immensely should you choose to participate or partner with me. Before I reveal any sensit

Re: [PATCH v2 1/3] drm/loongson: Add DRM Driver for Loongson 7A1000 bridge chip

2021-07-19 Thread Dan Carpenter
On Thu, Jul 15, 2021 at 09:58:07AM +0800, lichenyang wrote: > +int loongson_crtc_init(struct loongson_device *ldev, int index) > +{ > + struct loongson_crtc *lcrtc; > + u32 ret; This should be "int ret;" > + > + lcrtc = kzalloc(sizeof(struct loongson_crtc), GFP_KERNEL); > + if (lc

[PATCH v10 3/4] drm/bridge: anx7625: add MIPI DPI input feature

2021-07-19 Thread Xin Ji
The basic anx7625 driver only support MIPI DSI rx signal input. This patch add MIPI DPI rx input configuration support, after apply this patch, the driver can support DSI rx or DPI rx by adding 'bus-type' in DT. Reviewed-by: Robert Foss Signed-off-by: Xin Ji --- drivers/gpu/drm/bridge/analogix/

[PATCH v10 4/4] drm/bridge: anx7625: add HDMI audio function

2021-07-19 Thread Xin Ji
Add audio HDMI codec function support, enable it through device true flag "analogix,audio-enable". Reviewed-by: Robert Foss Signed-off-by: Xin Ji --- drivers/gpu/drm/bridge/analogix/anx7625.c | 226 ++ drivers/gpu/drm/bridge/analogix/anx7625.h | 5 + 2 files changed, 231 i

[PATCH v10 2/4] drm/bridge: anx7625: fix not correct return value

2021-07-19 Thread Xin Ji
At some time, the original code may return non zero value, force return 0 if operation finished. Reviewed-by: Robert Foss Signed-off-by: Xin Ji --- drivers/gpu/drm/bridge/analogix/anx7625.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/bridge/analogix/a

[PATCH v10 0/4] Add MIPI rx DPI support

2021-07-19 Thread Xin Ji
Hi all, this patch series implement MIPI rx DPI feature. Please help to review. This is the v10 version, rebase all patches on the latest code. Any mistakes, please let me know, I'll fix it in the next series. Change history: v10: Fix Rob Herring and Laurent Pinchart comments - Add more descript

Re: [PATCH v2 3/3] drm/loongson: Add interrupt driver for LS7A

2021-07-19 Thread Dan Carpenter
On Thu, Jul 15, 2021 at 09:58:09AM +0800, lichenyang wrote: > Add LS7A DC vsync interrupt enable and close function, and > register irq_handler function interface. > Add vbrank event processing flow. > > V2: > - Remove the useless flags parameter. Do this in a separate patch. It is an unrelated

Re: [PATCH v2 1/3] drm/loongson: Add DRM Driver for Loongson 7A1000 bridge chip

2021-07-19 Thread Dan Carpenter
On Thu, Jul 15, 2021 at 09:58:07AM +0800, lichenyang wrote: > From: Chenyang Li > > This patch adds an initial DRM driver for the Loongson LS7A1000 > bridge chip(LS7A). The LS7A bridge chip contains two display > controllers, support dual display output. The maximum support for > each channel dis

Re: [PATCH v2 2/3] drm/loongson: Add GPIO and I2C driver for loongson drm.

2021-07-19 Thread Dan Carpenter
On Thu, Jul 15, 2021 at 09:58:08AM +0800, lichenyang wrote: > static int loongson_get_modes(struct drm_connector *connector) > { > - int count; > + struct loongson_connector *lconnector; > + struct i2c_adapter *adapter; > + struct edid *edid = NULL; > + u32 ret; > + > + lc