summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorBenjamin Romer2015-12-07 16:58:37 +0100
committerGreg Kroah-Hartman2016-02-08 02:34:58 +0100
commit6bb871b61e48fbfca36989a15da4fd599395c598 (patch)
treec579f88f0d8cc06192fcf717b5ddf62ca77e7636 /drivers/staging/unisys
parentstaging: wilc1000: fix return error code of wilc_deinit (diff)
downloadkernel-qcow2-linux-6bb871b61e48fbfca36989a15da4fd599395c598.tar.gz
kernel-qcow2-linux-6bb871b61e48fbfca36989a15da4fd599395c598.tar.xz
kernel-qcow2-linux-6bb871b61e48fbfca36989a15da4fd599395c598.zip
staging: unisys: fix parenthesis in toolaction_show()
Fix the only fixable parenthesis alignment issue in visorchipset.c. The rest are unworkable because of the length of the symbol names used. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r--drivers/staging/unisys/visorbus/visorchipset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c
index 07594f43853d..b29832657c7b 100644
--- a/drivers/staging/unisys/visorbus/visorchipset.c
+++ b/drivers/staging/unisys/visorbus/visorchipset.c
@@ -537,8 +537,8 @@ static ssize_t toolaction_show(struct device *dev,
u8 tool_action;
visorchannel_read(controlvm_channel,
- offsetof(struct spar_controlvm_channel_protocol,
- tool_action), &tool_action, sizeof(u8));
+ offsetof(struct spar_controlvm_channel_protocol,
+ tool_action), &tool_action, sizeof(u8));
return scnprintf(buf, PAGE_SIZE, "%u\n", tool_action);
}