Commit 6ee19aef authored by Adnan Ali's avatar Adnan Ali Committed by Greg Kroah-Hartman

Staging: ramster: r2net: fix coding style issues

This commit fixes coding style issues related to string splite
across multiple lines.
Signed-off-by: default avatarAdnan Ali <adnan.ali@codethink.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2e0bec91
...@@ -266,8 +266,8 @@ int ramster_remote_put(struct tmem_xhandle *xh, char *data, size_t size, ...@@ -266,8 +266,8 @@ int ramster_remote_put(struct tmem_xhandle *xh, char *data, size_t size,
static unsigned long cnt; static unsigned long cnt;
cnt++; cnt++;
if (!(cnt&(cnt-1))) if (!(cnt&(cnt-1)))
pr_err("ramster_remote_put: message failed, " pr_err("ramster_remote_put: message failed, ret=%d, cnt=%lu\n",
"ret=%d, cnt=%lu\n", ret, cnt); ret, cnt);
ret = -1; ret = -1;
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment