mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 20:46:48 +02:00
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 <andy.shevchenko@gmail.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
34d7bf1c8e
commit
1e1e504eea
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user