Commit 496c8902 authored by David Binder's avatar David Binder Committed by Greg Kroah-Hartman

staging: unisys: visornic: Fix miscellaneous block comment format issues.

Fixes miscellaneous formatting issues with several block comments
throughout visornic_main.c.
Signed-off-by: default avatarDavid Binder <david.binder@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1ce0a9bc
...@@ -52,8 +52,7 @@ static struct visor_channeltype_descriptor visornic_channel_types[] = { ...@@ -52,8 +52,7 @@ static struct visor_channeltype_descriptor visornic_channel_types[] = {
{} {}
}; };
MODULE_DEVICE_TABLE(visorbus, visornic_channel_types); MODULE_DEVICE_TABLE(visorbus, visornic_channel_types);
/* /* FIXME XXX: This next line of code must be fixed and removed before
* FIXME XXX: This next line of code must be fixed and removed before
* acceptance into the 'normal' part of the kernel. It is only here as a place * acceptance into the 'normal' part of the kernel. It is only here as a place
* holder to get module autoloading functionality working for visorbus. Code * holder to get module autoloading functionality working for visorbus. Code
* must be added to scripts/mode/file2alias.c, etc., to get this working * must be added to scripts/mode/file2alias.c, etc., to get this working
...@@ -76,7 +75,6 @@ struct chanstat { ...@@ -76,7 +75,6 @@ struct chanstat {
}; };
/* struct visornic_devdata /* struct visornic_devdata
*
* @enabled: 0 disabled 1 enabled to receive. * @enabled: 0 disabled 1 enabled to receive.
* @enab_dis_acked: NET_RCV_ENABLE/DISABLE acked by IOPART. * @enab_dis_acked: NET_RCV_ENABLE/DISABLE acked by IOPART.
* @struct *dev: * @struct *dev:
...@@ -1387,8 +1385,7 @@ static int visornic_rx(struct uiscmdrsp *cmdrsp) ...@@ -1387,8 +1385,7 @@ static int visornic_rx(struct uiscmdrsp *cmdrsp)
*/ */
skb = NULL; skb = NULL;
/* /* whether the packet got dropped or handled, the skb is freed by
* whether the packet got dropped or handled, the skb is freed by
* kernel code, so we shouldn't free it. but we should repost a * kernel code, so we shouldn't free it. but we should repost a
* new rcv buffer. * new rcv buffer.
*/ */
...@@ -1863,9 +1860,10 @@ static int visornic_probe(struct visor_device *dev) ...@@ -1863,9 +1860,10 @@ static int visornic_probe(struct visor_device *dev)
goto cleanup_netdev; goto cleanup_netdev;
} }
/* set the net_xmit outstanding threshold */ /* set the net_xmit outstanding threshold
/* always leave two slots open but you should have 3 at a minimum */ * always leave two slots open but you should have 3 at a minimum
/* note that max_outstanding_net_xmits must be > 0 */ * note that max_outstanding_net_xmits must be > 0
*/
devdata->max_outstanding_net_xmits = devdata->max_outstanding_net_xmits =
max_t(unsigned long, 3, ((devdata->num_rcv_bufs / 3) - 2)); max_t(unsigned long, 3, ((devdata->num_rcv_bufs / 3) - 2));
devdata->upper_threshold_net_xmits = devdata->upper_threshold_net_xmits =
......
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