USB: omap_udc: fix compilation with debug enabled
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com> Acked-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e5fbab51b4
commit
e12cc34527
1 changed files with 3 additions and 2 deletions
|
@ -54,6 +54,7 @@
|
|||
|
||||
#include <mach/dma.h>
|
||||
#include <mach/usb.h>
|
||||
#include <mach/control.h>
|
||||
|
||||
#include "omap_udc.h"
|
||||
|
||||
|
@ -2310,10 +2311,10 @@ static int proc_otg_show(struct seq_file *s)
|
|||
u32 trans;
|
||||
char *ctrl_name;
|
||||
|
||||
tmp = OTG_REV_REG;
|
||||
tmp = omap_readl(OTG_REV);
|
||||
if (cpu_is_omap24xx()) {
|
||||
ctrl_name = "control_devconf";
|
||||
trans = CONTROL_DEVCONF_REG;
|
||||
trans = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
|
||||
} else {
|
||||
ctrl_name = "tranceiver_ctrl";
|
||||
trans = omap_readw(USB_TRANSCEIVER_CTRL);
|
||||
|
|
Loading…
Reference in a new issue