From mboxrd@z Thu Jan 1 00:00:00 1970 From: LABBE Corentin Date: Mon, 05 Oct 2020 10:50:41 +0000 Subject: Re: [PATCH][next] media: zoran: fix spelling mistake and make error message more meaningful Message-Id: <20201005105041.GB29306@Red> List-Id: References: <20201002101620.86156-1-colin.king@canonical.com> In-Reply-To: <20201002101620.86156-1-colin.king@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Colin King Cc: devel@driverdev.osuosl.org, Greg Kroah-Hartman , kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org, mjpeg-users@lists.sourceforge.net, Mauro Carvalho Chehab , linux-media@vger.kernel.org On Fri, Oct 02, 2020 at 11:16:20AM +0100, Colin King wrote: > From: Colin Ian King > > There is a spelling mistake in a pci_err error message. Fix this and > make the error message a little more meaningful. > > Signed-off-by: Colin Ian King > --- > drivers/staging/media/zoran/zoran_driver.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/media/zoran/zoran_driver.c b/drivers/staging/media/zoran/zoran_driver.c > index 808196ea5b81..d9f8b21edf6a 100644 > --- a/drivers/staging/media/zoran/zoran_driver.c > +++ b/drivers/staging/media/zoran/zoran_driver.c > @@ -666,7 +666,7 @@ static int zoran_g_selection(struct file *file, void *__fh, struct v4l2_selectio > > if (sel->type != V4L2_BUF_TYPE_VIDEO_OUTPUT && > sel->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) { > - pci_err(zr->pci_dev, "%s invalid combinaison\n", __func__); > + pci_err(zr->pci_dev, "%s invalid selection type combination\n", __func__); > return -EINVAL; > } > > -- > 2.27.0 > Hello Acked-by: Corentin Labbe Thanks