Commit f541b60c authored by Tony Lindgren's avatar Tony Lindgren

musb_hdrc: Search and replace pProcEntry with proc_entry

Search and replace pProcEntry with proc_entry
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a35157f6
...@@ -821,7 +821,7 @@ static int musb_proc_read(char *page, char **start, ...@@ -821,7 +821,7 @@ static int musb_proc_read(char *page, char **start,
void __devexit musb_debug_delete(char *name, struct musb *musb) void __devexit musb_debug_delete(char *name, struct musb *musb)
{ {
if (musb->pProcEntry) if (musb->proc_entry)
remove_proc_entry(name, NULL); remove_proc_entry(name, NULL);
} }
...@@ -835,7 +835,7 @@ musb_debug_create(char *name, struct musb *data) ...@@ -835,7 +835,7 @@ musb_debug_create(char *name, struct musb *data)
if (!name) if (!name)
return NULL; return NULL;
data->pProcEntry = pde = create_proc_entry(name, data->proc_entry = pde = create_proc_entry(name,
S_IFREG | S_IRUGO | S_IWUSR, NULL); S_IFREG | S_IRUGO | S_IWUSR, NULL);
if (pde) { if (pde) {
pde->data = data; pde->data = data;
......
...@@ -455,7 +455,7 @@ struct musb { ...@@ -455,7 +455,7 @@ struct musb {
#endif #endif
#ifdef MUSB_CONFIG_PROC_FS #ifdef MUSB_CONFIG_PROC_FS
struct proc_dir_entry *pProcEntry; struct proc_dir_entry *proc_entry;
#endif #endif
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment