Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751579AbdF1JnL (ORCPT ); Wed, 28 Jun 2017 05:43:11 -0400 Received: from metis.ext.4.pengutronix.de ([92.198.50.35]:45619 "EHLO metis.ext.4.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751469AbdF1Jmy (ORCPT ); Wed, 28 Jun 2017 05:42:54 -0400 Message-ID: <1498642970.2944.8.camel@pengutronix.de> Subject: Re: [PATCH] drm/imx: fix typo in ipu_plane_formats[] From: Philipp Zabel To: Laurentiu Palcu Cc: David Airlie , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Date: Wed, 28 Jun 2017 11:42:50 +0200 In-Reply-To: <1498642294-11675-1-git-send-email-laurentiu.palcu@nxp.com> References: <1498642294-11675-1-git-send-email-laurentiu.palcu@nxp.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.9-1+b1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 2001:67c:670:100:3ad5:47ff:feaf:1a17 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 978 Lines: 32 On Wed, 2017-06-28 at 12:31 +0300, Laurentiu Palcu wrote: > The BGRA8888 appears twice in the ipu_plane_formats[] list. The > duplicate should be BGRX8888. > > The original commit is: > > commit 59d6b7189a96 ("drm/imx: ipuv3-plane: enable support for RGBX8888 > and RGBA8888 pixel formats") > > Signed-off-by: Laurentiu Palcu > --- > drivers/gpu/drm/imx/ipuv3-plane.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/imx/ipuv3-plane.c b/drivers/gpu/drm/imx/ipuv3-plane.c > index d63e853..7b1bb0f 100644 > --- a/drivers/gpu/drm/imx/ipuv3-plane.c > +++ b/drivers/gpu/drm/imx/ipuv3-plane.c > @@ -54,7 +54,7 @@ static const uint32_t ipu_plane_formats[] = { > DRM_FORMAT_RGBA8888, > DRM_FORMAT_RGBX8888, > DRM_FORMAT_BGRA8888, > - DRM_FORMAT_BGRA8888, > + DRM_FORMAT_BGRX8888, > DRM_FORMAT_UYVY, > DRM_FORMAT_VYUY, > DRM_FORMAT_YUYV, Thank you, applied to the imx-drm/fixes branch. regards Philipp