Commit cbc5d96a authored by Erik Arfvidson's avatar Erik Arfvidson Committed by Greg Kroah-Hartman

staging: unisys: fix trailing comment in vbusdeviceinfo.h

Fixes checkpatch trailing */ comment in vbusdeviceinfo.h
Signed-off-by: default avatarErik Arfvidson <erik.arfvidson@unisys.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 277f3f71
...@@ -124,7 +124,8 @@ vbuschannel_itoa(char *p, int remain, int num) ...@@ -124,7 +124,8 @@ vbuschannel_itoa(char *p, int remain, int num)
} }
if (remain < digits) { if (remain < digits) {
/* not enough room left at <p> to hold number, so fill with /* not enough room left at <p> to hold number, so fill with
* '?' */ * '?'
*/
for (i = 0; i < remain; i++, p++) for (i = 0; i < remain; i++, p++)
*p = '?'; *p = '?';
return remain; return remain;
......
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