staging: unisys: fix indentation in req_handler_info
authorBenjamin Romer <benjamin.romer@unisys.com>
Fri, 3 Oct 2014 18:08:55 +0000 (14:08 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Oct 2014 02:29:04 +0000 (10:29 +0800)
Fix the indentation around server_channel_init, so the parameters line
up nicely.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/include/uisutils.h

index ba71a47..3f48136 100644 (file)
@@ -59,8 +59,8 @@ struct req_handler_info {
        int (*controlfunc)(struct io_msgs *);
        unsigned long min_channel_bytes;
        int (*server_channel_ok)(unsigned long channel_bytes);
-       int (*server_channel_init)
-        (void *x, unsigned char *client_str, u32 client_str_len, u64 bytes);
+       int (*server_channel_init)(void *x, unsigned char *client_str,
+                                  u32 client_str_len, u64 bytes);
        char switch_type_name[99];
        struct list_head list_link;     /* links into ReqHandlerInfo_list */
 };