mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
staging: unisys: visorbus: add error handling to remaining_steps_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:
parent
0d40643672
commit
c53578bd6c
1 changed files with 8 additions and 4 deletions
|
@ -242,11 +242,15 @@ static ssize_t remaining_steps_show(struct device *dev,
|
||||||
struct device_attribute *attr, char *buf)
|
struct device_attribute *attr, char *buf)
|
||||||
{
|
{
|
||||||
u16 remaining_steps = 0;
|
u16 remaining_steps = 0;
|
||||||
|
int err;
|
||||||
|
|
||||||
|
err = visorchannel_read(chipset_dev->controlvm_channel,
|
||||||
|
offsetof(struct spar_controlvm_channel_protocol,
|
||||||
|
installation_remaining_steps),
|
||||||
|
&remaining_steps, sizeof(u16));
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
visorchannel_read(chipset_dev->controlvm_channel,
|
|
||||||
offsetof(struct spar_controlvm_channel_protocol,
|
|
||||||
installation_remaining_steps),
|
|
||||||
&remaining_steps, sizeof(u16));
|
|
||||||
return sprintf(buf, "%hu\n", remaining_steps);
|
return sprintf(buf, "%hu\n", remaining_steps);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue