Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79bf442c authored by Dan Carpenter's avatar Dan Carpenter Committed by Geert Uytterhoeven
Browse files

m68k/pci: Remove a superflous KERN_ERR



pr_err() has a KERN_ERR built in.  Smatch complains about these nowadays.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 378690e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ int pcibios_enable_device(struct pci_dev *dev, int mask)

		r = dev->resource + idx;
		if (!r->start && r->end) {
			pr_err(KERN_ERR "PCI: Device %s not available because of resource collisions\n",
			pr_err("PCI: Device %s not available because of resource collisions\n",
				pci_name(dev));
			return -EINVAL;
		}