]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
wimax/i2400m: fix SDIO debugfs dentry name
authorInaky Perez-Gonzalez <inaky@linux.intel.com>
Mon, 26 Oct 2009 16:27:02 +0000 (09:27 -0700)
committerInaky Perez-Gonzalez <inaky@linux.intel.com>
Tue, 3 Nov 2009 20:49:42 +0000 (12:49 -0800)
The SDIO specific debugfs dentry was being misnamed "i2400m-usb"
instead of "i2400m-sdio".

Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
drivers/net/wimax/i2400m/sdio.c

index e8ad85c7a7995ac163b07c0131b063ccc7e718e0..b06d52633a432b823534e79180a5b6609dcd805d 100644 (file)
@@ -407,7 +407,7 @@ int i2400ms_debugfs_add(struct i2400ms *i2400ms)
        int result;
        struct dentry *dentry = i2400ms->i2400m.wimax_dev.debugfs_dentry;
 
-       dentry = debugfs_create_dir("i2400m-usb", dentry);
+       dentry = debugfs_create_dir("i2400m-sdio", dentry);
        result = PTR_ERR(dentry);
        if (IS_ERR(dentry)) {
                if (result == -ENODEV)