Commit 038761ce authored by Thinh Nguyen's avatar Thinh Nguyen Committed by Felipe Balbi

usb: dwc3: debug: Remove newline printout

The newline from the unknown link state tracepoint doesn't follow the
other tracepoints, and it looks unsightly. Let's remove it.
Signed-off-by: default avatarThinh Nguyen <thinhn@synopsys.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 6689f0f4
...@@ -112,7 +112,7 @@ dwc3_gadget_link_string(enum dwc3_link_state link_state) ...@@ -112,7 +112,7 @@ dwc3_gadget_link_string(enum dwc3_link_state link_state)
case DWC3_LINK_STATE_RESUME: case DWC3_LINK_STATE_RESUME:
return "Resume"; return "Resume";
default: default:
return "UNKNOWN link state\n"; return "UNKNOWN link state";
} }
} }
...@@ -141,7 +141,7 @@ dwc3_gadget_hs_link_string(enum dwc3_link_state link_state) ...@@ -141,7 +141,7 @@ dwc3_gadget_hs_link_string(enum dwc3_link_state link_state)
case DWC3_LINK_STATE_RESUME: case DWC3_LINK_STATE_RESUME:
return "Resume"; return "Resume";
default: default:
return "UNKNOWN link state\n"; return "UNKNOWN link state";
} }
} }
......
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