Commit 6791b8c4 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: fix spacing in uisutils.c

Fix as many spacing problems as possible by indenting lines properly and
getting rid of spaces between typecasts and their targets.
Signed-off-by: default avatarBryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 10ae5fad
...@@ -48,7 +48,7 @@ atomic_t uisutils_registered_services = ATOMIC_INIT(0); ...@@ -48,7 +48,7 @@ atomic_t uisutils_registered_services = ATOMIC_INIT(0);
int int
uisutil_add_proc_line_ex(int *total, char **buffer, int *buffer_remaining, uisutil_add_proc_line_ex(int *total, char **buffer, int *buffer_remaining,
char *format, ...) char *format, ...)
{ {
va_list args; va_list args;
int len; int len;
...@@ -95,7 +95,7 @@ uisctrl_register_req_handler(int type, void *fptr, ...@@ -95,7 +95,7 @@ uisctrl_register_req_handler(int type, void *fptr,
} }
if (chipset_driver_info) if (chipset_driver_info)
bus_device_info_init(chipset_driver_info, "chipset", "uislib", bus_device_info_init(chipset_driver_info, "chipset", "uislib",
VERSION, NULL); VERSION, NULL);
return 1; return 1;
} }
...@@ -147,7 +147,7 @@ uisctrl_register_req_handler_ex(uuid_le switch_uuid, ...@@ -147,7 +147,7 @@ uisctrl_register_req_handler_ex(uuid_le switch_uuid,
if (rc) { if (rc) {
if (chipset_driver_info) if (chipset_driver_info)
bus_device_info_init(chipset_driver_info, "chipset", bus_device_info_init(chipset_driver_info, "chipset",
"uislib", VERSION, NULL); "uislib", VERSION, NULL);
} else } else
LOGERR("failed to register type %pUL.\n", &switch_uuid); LOGERR("failed to register type %pUL.\n", &switch_uuid);
...@@ -163,7 +163,7 @@ uisctrl_unregister_req_handler_ex(uuid_le switch_uuid) ...@@ -163,7 +163,7 @@ uisctrl_unregister_req_handler_ex(uuid_le switch_uuid)
LOGINF("type=%pUL.\n", &switch_uuid); LOGINF("type=%pUL.\n", &switch_uuid);
if (req_handler_del(switch_uuid) < 0) { if (req_handler_del(switch_uuid) < 0) {
LOGERR("failed to remove %pUL from server list\n", LOGERR("failed to remove %pUL from server list\n",
&switch_uuid); &switch_uuid);
goto Away; goto Away;
} }
atomic_dec(&uisutils_registered_services); atomic_dec(&uisutils_registered_services);
...@@ -213,10 +213,10 @@ uisutil_copy_fragsinfo_from_skb(unsigned char *calling_ctx, void *skb_in, ...@@ -213,10 +213,10 @@ uisutil_copy_fragsinfo_from_skb(unsigned char *calling_ctx, void *skb_in,
frags[count].pi_pfn = frags[count].pi_pfn =
page_to_pfn(virt_to_page(skb->data + offset)); page_to_pfn(virt_to_page(skb->data + offset));
frags[count].pi_off = frags[count].pi_off =
(unsigned long) (skb->data + offset) & PI_PAGE_MASK; (unsigned long)(skb->data + offset) & PI_PAGE_MASK;
size = size =
min(firstfraglen, min(firstfraglen,
(unsigned int) (PI_PAGE_SIZE - frags[count].pi_off)); (unsigned int)(PI_PAGE_SIZE - frags[count].pi_off));
/* can take smallest of firstfraglen(what's left) OR /* can take smallest of firstfraglen(what's left) OR
* bytes left in the page * bytes left in the page
*/ */
...@@ -230,7 +230,7 @@ uisutil_copy_fragsinfo_from_skb(unsigned char *calling_ctx, void *skb_in, ...@@ -230,7 +230,7 @@ uisutil_copy_fragsinfo_from_skb(unsigned char *calling_ctx, void *skb_in,
if ((count + numfrags) > frags_max) { if ((count + numfrags) > frags_max) {
LOGERR("**** FAILED %s frags array too small: max:%d count+nr_frags:%d\n", LOGERR("**** FAILED %s frags array too small: max:%d count+nr_frags:%d\n",
calling_ctx, frags_max, count + numfrags); calling_ctx, frags_max, count + numfrags);
return -1; /* failure */ return -1; /* failure */
} }
......
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