[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140414222523.15032.99127.stgit@bhelgaas-glaptop.roam.corp.google.com>
Date: Mon, 14 Apr 2014 16:25:23 -0600
From: Bjorn Helgaas <bhelgaas@...gle.com>
To: Boris Ostrovsky <boris.ostrovsky@...cle.com>,
David Vrabel <david.vrabel@...rix.com>,
Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>
Cc: xen-devel@...ts.xenproject.org, linux-kernel@...r.kernel.org
Subject: [PATCH] xen/pci: Remove unused dev_err() string
We previously verified that "action" is either BUS_NOTIFY_ADD_DEVICE or
BUS_NOTIFY_DEL_DEVICE, so there's no need for the default "?" case.
Found by Coverity (CID 146520).
Signed-off-by: Bjorn Helgaas <bhelgaas@...gle.com>
---
drivers/xen/pci.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/xen/pci.c b/drivers/xen/pci.c
index dd9c249ea311..59a25f937bd7 100644
--- a/drivers/xen/pci.c
+++ b/drivers/xen/pci.c
@@ -177,8 +177,7 @@ static int xen_pci_notifier(struct notifier_block *nb,
}
if (r)
dev_err(dev, "Failed to %s - passthrough or MSI/MSI-X might fail!\n",
- action == BUS_NOTIFY_ADD_DEVICE ? "add" :
- (action == BUS_NOTIFY_DEL_DEVICE ? "delete" : "?"));
+ action == BUS_NOTIFY_ADD_DEVICE ? "add" : "del");
return NOTIFY_OK;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists