USB: replace remaining __FUNCTION__ occurrences
[deliverable/linux.git] / drivers / usb / core / inode.c
index 83a373e9cc3624c66f09bac2c5383221e0eef8d2..8607846e3c3f7bf1f2998953b61517756a3a4c14 100644 (file)
@@ -463,13 +463,13 @@ static int usbfs_fill_super(struct super_block *sb, void *data, int silent)
        inode = usbfs_get_inode(sb, S_IFDIR | 0755, 0);
 
        if (!inode) {
-               dbg("%s: could not get inode!",__FUNCTION__);
+               dbg("%s: could not get inode!",__func__);
                return -ENOMEM;
        }
 
        root = d_alloc_root(inode);
        if (!root) {
-               dbg("%s: could not get root dentry!",__FUNCTION__);
+               dbg("%s: could not get root dentry!",__func__);
                iput(inode);
                return -ENOMEM;
        }
This page took 0.028441 seconds and 5 git commands to generate.