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

Commit e496b617 authored by Harvey Harrison's avatar Harvey Harrison Committed by Jesse Barnes
Browse files

PCI: __FUNCTION__ is gcc-specific, use __func__

parent 1cc0ca26
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -657,7 +657,7 @@ static int pci_save_pcie_state(struct pci_dev *dev)

	save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
	if (!save_state) {
		dev_err(&dev->dev, "buffer not found in %s\n", __FUNCTION__);
		dev_err(&dev->dev, "buffer not found in %s\n", __func__);
		return -ENOMEM;
	}
	cap = (u16 *)&save_state->data[0];
@@ -700,7 +700,7 @@ static int pci_save_pcix_state(struct pci_dev *dev)

	save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
	if (!save_state) {
		dev_err(&dev->dev, "buffer not found in %s\n", __FUNCTION__);
		dev_err(&dev->dev, "buffer not found in %s\n", __func__);
		return -ENOMEM;
	}