staging: unisys; visorbus: visorbus_main.c: remove extraneous newline

Use all 80 characters when calling functions.

Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
David Kershner 2017-09-27 13:14:18 -04:00 committed by Greg Kroah-Hartman
parent ae54a28796
commit 9f1d28fa2c
1 changed files with 4 additions and 8 deletions

View File

@ -1023,9 +1023,8 @@ int visorbus_create_instance(struct visor_device *dev)
dev->debugfs_dir = debugfs_create_dir(dev_name(&dev->device), dev->debugfs_dir = debugfs_create_dir(dev_name(&dev->device),
visorbus_debugfs_dir); visorbus_debugfs_dir);
dev->debugfs_client_bus_info = dev->debugfs_client_bus_info =
debugfs_create_file("client_bus_info", 0440, debugfs_create_file("client_bus_info", 0440, dev->debugfs_dir,
dev->debugfs_dir, dev, dev, &client_bus_info_debugfs_fops);
&client_bus_info_debugfs_fops);
dev_set_drvdata(&dev->device, dev); dev_set_drvdata(&dev->device, dev);
err = get_vbus_header_info(dev->visorchannel, &dev->device, hdr_info); err = get_vbus_header_info(dev->visorchannel, &dev->device, hdr_info);
@ -1040,10 +1039,8 @@ int visorbus_create_instance(struct visor_device *dev)
dev->state.created = 1; dev->state.created = 1;
dev->vbus_hdr_info = (void *)hdr_info; dev->vbus_hdr_info = (void *)hdr_info;
write_vbus_chp_info(dev->visorchannel, hdr_info, write_vbus_chp_info(dev->visorchannel, hdr_info, &chipset_driverinfo);
&chipset_driverinfo); write_vbus_bus_info(dev->visorchannel, hdr_info, &clientbus_driverinfo);
write_vbus_bus_info(dev->visorchannel, hdr_info,
&clientbus_driverinfo);
visorbus_response(dev, err, CONTROLVM_BUS_CREATE); visorbus_response(dev, err, CONTROLVM_BUS_CREATE);
@ -1126,7 +1123,6 @@ static void resume_state_change_complete(struct visor_device *dev, int status)
return; return;
dev->resuming = false; dev->resuming = false;
/* /*
* Notify the chipset driver that the resume is complete, * Notify the chipset driver that the resume is complete,
* which will presumably want to send some sort of response to * which will presumably want to send some sort of response to