summaryrefslogtreecommitdiff
path: root/target/linux/atheros
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-06-10 09:06:14 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-06-10 09:06:14 +0000
commitf363db009481d43854f0d2f597a50c7a7ef0974e (patch)
tree52bad3ea8def4a3843be154100fab1151da37078 /target/linux/atheros
parent70b2a81a2e780dbb28b653ee46915159002be60e (diff)
downloadmtk-20170518-f363db009481d43854f0d2f597a50c7a7ef0974e.zip
mtk-20170518-f363db009481d43854f0d2f597a50c7a7ef0974e.tar.gz
mtk-20170518-f363db009481d43854f0d2f597a50c7a7ef0974e.tar.bz2
atheros: avoid __FUNCTION__ usage
Use __func__ instead of gcc specific __FUNCTION__ as suggested by checkpatch. Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> SVN-Revision: 41093
Diffstat (limited to 'target/linux/atheros')
-rw-r--r--target/linux/atheros/patches-3.10/110-ar2313_ethernet.patch12
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/atheros/patches-3.10/110-ar2313_ethernet.patch b/target/linux/atheros/patches-3.10/110-ar2313_ethernet.patch
index b283e31..00348c3 100644
--- a/target/linux/atheros/patches-3.10/110-ar2313_ethernet.patch
+++ b/target/linux/atheros/patches-3.10/110-ar2313_ethernet.patch
@@ -438,7 +438,7 @@
+ ar231x_descr_t *space;
+
+ if (sp->rx_ring != NULL) {
-+ printk("%s: already done.\n", __FUNCTION__);
++ printk("%s: already done.\n", __func__);
+ return 0;
+ }
+
@@ -673,7 +673,7 @@
+ /* Allocate descriptors */
+ if (ar231x_allocate_descriptors(dev)) {
+ printk("%s: %s: ar231x_allocate_descriptors failed\n",
-+ dev->name, __FUNCTION__);
++ dev->name, __func__);
+ ecode = -EAGAIN;
+ goto init_error;
+ }
@@ -685,7 +685,7 @@
+ GFP_KERNEL);
+ if (!(sp->rx_skb)) {
+ printk("%s: %s: rx_skb kmalloc failed\n",
-+ dev->name, __FUNCTION__);
++ dev->name, __func__);
+ ecode = -EAGAIN;
+ goto init_error;
+ }
@@ -698,7 +698,7 @@
+ GFP_KERNEL);
+ if (!(sp->tx_skb)) {
+ printk("%s: %s: tx_skb kmalloc failed\n",
-+ dev->name, __FUNCTION__);
++ dev->name, __func__);
+ ecode = -EAGAIN;
+ goto init_error;
+ }
@@ -735,7 +735,7 @@
+ dev->name, dev);
+ if (ecode) {
+ printk(KERN_WARNING "%s: %s: Requested IRQ %d is busy\n",
-+ dev->name, __FUNCTION__, dev->irq);
++ dev->name, __func__, dev->irq);
+ goto init_error;
+ }
+
@@ -773,7 +773,7 @@
+ skb = netdev_alloc_skb_ip_align(dev, AR2313_BUFSIZE);
+ if (!skb) {
+ printk("\n\n\n\n %s: No memory in system\n\n\n\n",
-+ __FUNCTION__);
++ __func__);
+ break;
+ }
+