staging: unisys: visorbus: add error handling to boottotool_show

Don't just drop the error from visorchannel_read on the floor, report it.

Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: 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-03-28 09:34:24 -04:00 committed by Greg Kroah-Hartman
parent 002a5abb23
commit 0b01c6ce5a

View File

@ -130,11 +130,16 @@ static ssize_t boottotool_show(struct device *dev,
char *buf) char *buf)
{ {
struct efi_spar_indication efi_spar_indication; struct efi_spar_indication efi_spar_indication;
int err;
visorchannel_read(chipset_dev->controlvm_channel, err = visorchannel_read(chipset_dev->controlvm_channel,
offsetof(struct spar_controlvm_channel_protocol, offsetof(struct spar_controlvm_channel_protocol,
efi_spar_ind), &efi_spar_indication, efi_spar_ind),
sizeof(struct efi_spar_indication)); &efi_spar_indication,
sizeof(struct efi_spar_indication));
if (err)
return err;
return sprintf(buf, "%u\n", efi_spar_indication.boot_to_tool); return sprintf(buf, "%u\n", efi_spar_indication.boot_to_tool);
} }