This patch converts __FUNCTION__ to __func__, since __func__ is standard.
[coreboot.git] / src / southbridge / amd / cs5535 / cs5535.c
index e56e199c41865952155d2223eb38e45ff7b0155f..d1ec056a89269eb8cda72f5b04abb6d118824cbe 100644 (file)
@@ -46,7 +46,7 @@ static void nvram_on(struct device *dev)
        
 static void southbridge_init(struct device *dev)
 {
-       printk_spew("cs5535: %s\n", __FUNCTION__);
+       printk_spew("cs5535: %s\n", __func__);
        nvram_on(dev);
 }
 
@@ -66,12 +66,12 @@ static void dump_south(struct device *dev)
 
 static void southbridge_enable(struct device *dev)
 {
-       printk_spew("%s: dev is %p\n", __FUNCTION__, dev);
+       printk_spew("%s: dev is %p\n", __func__, dev);
 }
 
 static void cs5535_pci_dev_enable_resources(device_t dev)
 {
-       printk_spew("cs5535.c: %s()\n", __FUNCTION__);
+       printk_spew("cs5535.c: %s()\n", __func__);
        pci_dev_enable_resources(dev);
        enable_childrens_resources(dev);
 }