]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
isdn: fix misspelling of current function in string
authorJulia Lawall <julia.lawall@lip6.fr>
Sun, 7 Dec 2014 19:20:47 +0000 (20:20 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 9 Dec 2014 21:18:46 +0000 (16:18 -0500)
Replace a misspelled function name by %s and then __func__.

In the first case, the print is just dropped, because kmalloc itself does
enough error reporting.

This was done using Coccinelle, including the use of Levenshtein distance,
as proposed by Rasmus Villemoes.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/isdn/hisax/hfc_2bs0.c
drivers/isdn/hisax/hfc_sx.c
drivers/isdn/hisax/hfc_usb.c
drivers/isdn/hisax/ipacx.c
drivers/isdn/hisax/isdnl1.c
drivers/isdn/hisax/isdnl3.c
drivers/isdn/hysdn/hycapi.c
drivers/isdn/pcbit/layer2.c

index 838531b6a60e487d69b958bf1fd759d150e54e75..14dada42874ef7aa709311a5e69f9a526ad5a26b 100644 (file)
@@ -31,7 +31,7 @@ WaitForBusy(struct IsdnCardState *cs)
                to--;
        }
        if (!to) {
-               printk(KERN_WARNING "HiSax: waitforBusy timeout\n");
+               printk(KERN_WARNING "HiSax: %s timeout\n", __func__);
                return (0);
        } else
                return (to);
index fa1fefd711cde875fbcdf9b56a20f5375f39ced3..b1fad81f0722e64b2e0d671215e8dc89c295f4a1 100644 (file)
@@ -1159,7 +1159,8 @@ hfcsx_l2l1(struct PStack *st, int pr, void *arg)
        case (PH_PULL | INDICATION):
                spin_lock_irqsave(&bcs->cs->lock, flags);
                if (bcs->tx_skb) {
-                       printk(KERN_WARNING "hfc_l2l1: this shouldn't happen\n");
+                       printk(KERN_WARNING "%s: this shouldn't happen\n",
+                              __func__);
                } else {
 //                             test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
                        bcs->tx_skb = skb;
index 849a80752685bdab2ad945824eadd03c924ff7f5..678bd5224bc338a2767a106fb8057f544f218050 100644 (file)
@@ -927,9 +927,8 @@ start_int_fifo(usb_fifo *fifo)
        fifo->active = 1;       /* must be marked active */
        errcode = usb_submit_urb(fifo->urb, GFP_KERNEL);
        if (errcode) {
-               printk(KERN_ERR
-                      "HFC-S USB: submit URB error(start_int_info): status:%i\n",
-                      errcode);
+               printk(KERN_ERR "HFC-S USB: submit URB error(%s): status:%i\n",
+                      __func__, errcode);
                fifo->active = 0;
                fifo->skbuff = NULL;
        }
index 5faa5de24305623bd38bcd4b0047f0063708f172..9cc26b40a43771dee4d670f2416711897bc9ac1a 100644 (file)
@@ -580,7 +580,7 @@ bch_fill_fifo(struct BCState *bcs)
        if (cs->debug & L1_DEB_HSCX_FIFO) {
                char *t = bcs->blog;
 
-               t += sprintf(t, "chb_fill_fifo() B-%d cnt %d", hscx, count);
+               t += sprintf(t, "%s() B-%d cnt %d", __func__, hscx, count);
                QuickHex(t, ptr, count);
                debugl1(cs, "%s", bcs->blog);
        }
index 800095781bfb7daa11ee5dba382176f9ba012473..a560842c0e48d4967f7b39d19e0a005553dc644f 100644 (file)
@@ -867,7 +867,7 @@ l1_msg(struct IsdnCardState *cs, int pr, void *arg) {
                        break;
                default:
                        if (cs->debug)
-                               debugl1(cs, "l1msg %04X unhandled", pr);
+                               debugl1(cs, "%s %04X unhandled", __func__, pr);
                        break;
                }
                st = st->next;
index 45b03840f71691b4495fa6004f4e34c5a7e0d0ec..c754706f83cdc190ca18e299896590430e7b9824 100644 (file)
@@ -153,7 +153,7 @@ void
 newl3state(struct l3_process *pc, int state)
 {
        if (pc->debug & L3_DEB_STATE)
-               l3_debug(pc->st, "newstate cr %d %d --> %d",
+               l3_debug(pc->st, "%s cr %d %d --> %d", __func__,
                         pc->callref & 0x7F,
                         pc->state, state);
        pc->state = state;
index 00aad10507d8a05710b5955cb47f1c4c97612fd4..93bae94314a69e7bb2a4502475c3a348e67808a4 100644 (file)
@@ -501,7 +501,7 @@ static char *hycapi_procinfo(struct capi_ctr *ctrl)
 {
        hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
 #ifdef HYCAPI_PRINTFNAMES
-       printk(KERN_NOTICE "hycapi_proc_info\n");
+       printk(KERN_NOTICE "%s\n", __func__);
 #endif
        if (!cinfo)
                return "";
index 42ecfef80132b098735ab2a4d96bc9ec2094eece..46e1240ae0741a54008a976602b11a90f00ea685 100644 (file)
@@ -85,7 +85,6 @@ pcbit_l2_write(struct pcbit_dev *dev, ulong msg, ushort refnum,
        }
        if ((frame = kmalloc(sizeof(struct frame_buf),
                             GFP_ATOMIC)) == NULL) {
-               printk(KERN_WARNING "pcbit_2_write: kmalloc failed\n");
                dev_kfree_skb(skb);
                return -1;
        }