Commit a599e486 authored by Jacob Huisman's avatar Jacob Huisman Committed by Greg Kroah-Hartman

usb: usb-skeleton: make comment block in line with coding style

Comment block was not in accordance with coding style.
Fixes two checkpatch warnings:
WARNING: Block comments use * on subsequent lines
WARNING: Block comments use a trailing */ on a separate line
Signed-off-by: default avatarJacob Huisman <jacobhuisman@kernelthusiast.com>
Link: https://lore.kernel.org/r/20190815174210.580-1-jacobhuisman@kernelthusiast.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7ffc95e9
...@@ -35,9 +35,11 @@ MODULE_DEVICE_TABLE(usb, skel_table); ...@@ -35,9 +35,11 @@ MODULE_DEVICE_TABLE(usb, skel_table);
/* our private defines. if this grows any larger, use your own .h file */ /* our private defines. if this grows any larger, use your own .h file */
#define MAX_TRANSFER (PAGE_SIZE - 512) #define MAX_TRANSFER (PAGE_SIZE - 512)
/* MAX_TRANSFER is chosen so that the VM is not stressed by /*
allocations > PAGE_SIZE and the number of packets in a page * MAX_TRANSFER is chosen so that the VM is not stressed by
is an integer 512 is the largest possible packet on EHCI */ * allocations > PAGE_SIZE and the number of packets in a page
* is an integer 512 is the largest possible packet on EHCI
*/
#define WRITES_IN_FLIGHT 8 #define WRITES_IN_FLIGHT 8
/* arbitrarily chosen */ /* arbitrarily chosen */
......
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