From: Hans de Goede Date: Mon, 19 Feb 2024 13:19:56 +0000 (+0100) Subject: media: atomisp: Fix double negation in unsupported revision error X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1e1e504eeaea184ab1ca731131cbd8d614d08479;p=users%2Fdwmw2%2Flinux.git media: atomisp: Fix double negation in unsupported revision error s/is not unsupported/is not supported/ in the unsupported revision error. Suggested-by: Andy Shevchenko Signed-off-by: Hans de Goede Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/staging/media/atomisp/pci/atomisp_v4l2.c b/drivers/staging/media/atomisp/pci/atomisp_v4l2.c index f736e54c7df35..5a97013094f26 100644 --- a/drivers/staging/media/atomisp/pci/atomisp_v4l2.c +++ b/drivers/staging/media/atomisp/pci/atomisp_v4l2.c @@ -1363,7 +1363,7 @@ static int atomisp_pci_probe(struct pci_dev *pdev, const struct pci_device_id *i } if (pdev->revision <= ATOMISP_PCI_REV_BYT_A0_MAX) { - dev_err(&pdev->dev, "revision %d is not unsupported\n", pdev->revision); + dev_err(&pdev->dev, "revision %d is not supported\n", pdev->revision); return -ENODEV; }