diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-01 21:34:58 -0700 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-07-29 13:56:50 +0300 |
commit | 24dc3538bcfb353741e653fab550c4bf0a8dc07d (patch) | |
tree | 35241871f28069a3ac114fe34f6bed0a203e981d /drivers/usb | |
parent | c50f056c360673ef196b49bfa161d841f0fbe92e (diff) |
usb: musb: get rid of unused proc_dir_entry
The musb driver no longer uses procfs, so get rid of the proc_dir_entry
variable in struct musb.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/musb/musb_core.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/usb/musb/musb_core.h b/drivers/usb/musb/musb_core.h index 7d341c387ea..65f3917b4fc 100644 --- a/drivers/usb/musb/musb_core.h +++ b/drivers/usb/musb/musb_core.h @@ -83,11 +83,6 @@ enum { MUSB_PORT_MODE_DUAL_ROLE, }; -#ifdef CONFIG_PROC_FS -#include <linux/fs.h> -#define MUSB_CONFIG_PROC_FS -#endif - /****************************** CONSTANTS ********************************/ #ifndef MUSB_C_NUM_EPS @@ -425,9 +420,6 @@ struct musb { struct musb_hdrc_config *config; -#ifdef MUSB_CONFIG_PROC_FS - struct proc_dir_entry *proc_entry; -#endif int xceiv_old_state; #ifdef CONFIG_DEBUG_FS struct dentry *debugfs_root; |