diff options
| author | Felipe Balbi <balbi@ti.com> | 2013-02-22 14:28:54 +0200 | 
|---|---|---|
| committer | Felipe Balbi <balbi@ti.com> | 2013-03-18 11:17:13 +0200 | 
| commit | 6b2a0eb854602b627a21b0256ae556506e91261e (patch) | |
| tree | eea7ca800d8bcde2d17b9512c0d97c00ada824d1 | |
| parent | fdba5aa54cfca795b73e50d45f617a0498a29af7 (diff) | |
| download | olio-linux-3.10-6b2a0eb854602b627a21b0256ae556506e91261e.tar.xz olio-linux-3.10-6b2a0eb854602b627a21b0256ae556506e91261e.zip  | |
usb: dwc3: debugfs: add two missing Link States
for Reset and Resume we were going to print
"UNKNOWN" when we actually knew what those
were.
Signed-off-by: Felipe Balbi <balbi@ti.com>
| -rw-r--r-- | drivers/usb/dwc3/debugfs.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/usb/dwc3/debugfs.c b/drivers/usb/dwc3/debugfs.c index 4a752e730c5..c740c7643f4 100644 --- a/drivers/usb/dwc3/debugfs.c +++ b/drivers/usb/dwc3/debugfs.c @@ -577,6 +577,12 @@ static int dwc3_link_state_show(struct seq_file *s, void *unused)  	case DWC3_LINK_STATE_LPBK:  		seq_printf(s, "Loopback\n");  		break; +	case DWC3_LINK_STATE_RESET: +		seq_printf(s, "Reset\n"); +		break; +	case DWC3_LINK_STATE_RESUME: +		seq_printf(s, "Resume\n"); +		break;  	default:  		seq_printf(s, "UNKNOWN %d\n", reg);  	}  |