]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
musb_hdrc: Search and replace pProcEntry with proc_entry
authorTony Lindgren <tony@atomide.com>
Mon, 13 Aug 2007 11:33:23 +0000 (04:33 -0700)
committerTony Lindgren <tony@atomide.com>
Mon, 13 Aug 2007 11:33:23 +0000 (04:33 -0700)
Search and replace pProcEntry with proc_entry

Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/musb_procfs.c
drivers/usb/musb/musbdefs.h

index f2fdce0160cec66ee51598117b841b9c3ecf6599..b141a73c33317ff8dd63344ea51eb2bbd67fbce5 100644 (file)
@@ -821,7 +821,7 @@ static int musb_proc_read(char *page, char **start,
 
 void __devexit musb_debug_delete(char *name, struct musb *musb)
 {
-       if (musb->pProcEntry)
+       if (musb->proc_entry)
                remove_proc_entry(name, NULL);
 }
 
@@ -835,7 +835,7 @@ musb_debug_create(char *name, struct musb *data)
        if (!name)
                return NULL;
 
-       data->pProcEntry = pde = create_proc_entry(name,
+       data->proc_entry = pde = create_proc_entry(name,
                                        S_IFREG | S_IRUGO | S_IWUSR, NULL);
        if (pde) {
                pde->data = data;
index 17c7cbebcd2d00b1ae7939e59772fc5d76ea6062..2465e230485009ea29f569ca0de29742684366c4 100644 (file)
@@ -455,7 +455,7 @@ struct musb {
 #endif
 
 #ifdef MUSB_CONFIG_PROC_FS
-       struct proc_dir_entry *pProcEntry;
+       struct proc_dir_entry *proc_entry;
 #endif
 };