mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:01:13 +07:00
staging: unisys: visorbus: add error handling textid_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
d9857c794e
commit
0d40643672
@ -205,12 +205,16 @@ static ssize_t textid_show(struct device *dev, struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
u32 text_id = 0;
|
||||
int err;
|
||||
|
||||
err = visorchannel_read
|
||||
(chipset_dev->controlvm_channel,
|
||||
offsetof(struct spar_controlvm_channel_protocol,
|
||||
installation_text_id),
|
||||
&text_id, sizeof(u32));
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
visorchannel_read
|
||||
(chipset_dev->controlvm_channel,
|
||||
offsetof(struct spar_controlvm_channel_protocol,
|
||||
installation_text_id),
|
||||
&text_id, sizeof(u32));
|
||||
return sprintf(buf, "%i\n", text_id);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user