diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-01-07 16:22:37 -0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@hobbes.lan> | 2009-03-19 19:29:20 -0700 |
commit | e496b617b40f2abf6d49803f56aa1344ce1b9177 (patch) | |
tree | 895638825c123c79ecc8cb0dd105acde16d7f014 | |
parent | 1cc0ca26c57221f5aa0f49a311a8fc83413dfe97 (diff) | |
download | linux-3.10-e496b617b40f2abf6d49803f56aa1344ce1b9177.tar.gz linux-3.10-e496b617b40f2abf6d49803f56aa1344ce1b9177.tar.bz2 linux-3.10-e496b617b40f2abf6d49803f56aa1344ce1b9177.zip |
PCI: __FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r-- | drivers/pci/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 6d6120007af..5737b8a9a73 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -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; } |