pci_ep: Fix Coverity warning
authorRamon Fried <rfried.dev@gmail.com>
Wed, 31 Jul 2019 08:04:26 +0000 (11:04 +0300)
committerTom Rini <trini@konsulko.com>
Wed, 7 Aug 2019 19:31:04 +0000 (15:31 -0400)
Fix the following Coverity warning:
CID 244086:  Incorrect expression  (BAD_COMPARE)
Comparing pointer "ep_bar" against NULL using anything besides == or
is likely to be incorrect.

Fixes: 914026d25848 ("drivers: pci_ep: Introduce UCLASS_PCI_EP uclass")

Signed-off-by: Ramon Fried <rfried.dev@gmail.com>
drivers/pci_endpoint/pci_ep-uclass.c

index 2f9c70398d76007e0593173413c0bdb82c3e51db..9f53a9a9b9796dbc0762f9600e4f65f8a616503c 100644 (file)
@@ -43,7 +43,7 @@ int pci_ep_set_bar(struct udevice *dev, uint func_no, struct pci_bar *ep_bar)
        int flags = ep_bar->flags;
 
        /* Some basic bar validity checks */
-       if (ep_bar->barno > BAR_5 || ep_bar < BAR_0)
+       if (ep_bar->barno > BAR_5 || ep_bar->barno < BAR_0)
                return -EINVAL;
 
        if ((ep_bar->barno == BAR_5 &&