staging: unisys: visorbus: fix line over 80 characters checkpatch warning

This patch fixes two checkpatch issues of line over 80 characters
in visorchipset.c.

Signed-off-by: Sameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
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:
Sameer Wadgaonkar 2017-09-27 13:14:45 -04:00 committed by Greg Kroah-Hartman
parent 90476670ab
commit fe9f4b53f3
1 changed files with 4 additions and 2 deletions

View File

@ -694,8 +694,10 @@ static int visorbus_device_create(struct controlvm_message *inmsg)
goto err_free_dev_info; goto err_free_dev_info;
} }
dev_info->visorchannel = visorchannel; dev_info->visorchannel = visorchannel;
guid_copy(&dev_info->channel_type_guid, &cmd->create_device.data_type_guid); guid_copy(&dev_info->channel_type_guid,
if (guid_equal(&cmd->create_device.data_type_guid, &visor_vhba_channel_guid)) { &cmd->create_device.data_type_guid);
if (guid_equal(&cmd->create_device.data_type_guid,
&visor_vhba_channel_guid)) {
err = save_crash_message(inmsg, CRASH_DEV); err = save_crash_message(inmsg, CRASH_DEV);
if (err) if (err)
goto err_destroy_visorchannel; goto err_destroy_visorchannel;