aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/gdm724x
diff options
context:
space:
mode:
authorIgnacio Losiggio <iglosiggio@gmail.com>2019-03-17 22:15:36 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-03-18 07:53:39 +0100
commited98730d9f25290b157839ccc0f925b53afa7b6a (patch)
tree52dff4618d3052f4170b332e35ce62e6443d3715 /drivers/staging/gdm724x
parentstaging: rtl8188eu: core: rtw_recv.c: Fix a tab indent issue (diff)
downloadlinux-dev-ed98730d9f25290b157839ccc0f925b53afa7b6a.tar.xz
linux-dev-ed98730d9f25290b157839ccc0f925b53afa7b6a.zip
staging: gdm724x: Do not break expressions
When the entire expression can be shown in the same line breaking it makes it more difficult to read. Signed-off-by: Ignacio Losiggio <iglosiggio@dc.uba.ar> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gdm724x')
-rw-r--r--drivers/staging/gdm724x/gdm_mux.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/staging/gdm724x/gdm_mux.c b/drivers/staging/gdm724x/gdm_mux.c
index e2a050ba6fbb..0678f344fafb 100644
--- a/drivers/staging/gdm724x/gdm_mux.c
+++ b/drivers/staging/gdm724x/gdm_mux.c
@@ -164,8 +164,7 @@ static int up_to_host(struct mux_rx *r)
total_len = ALIGN(MUX_HEADER_SIZE + payload_size, 4);
- if (len - packet_size_sum <
- total_len) {
+ if (len - packet_size_sum < total_len) {
pr_err("invalid payload : %d %d %04x\n",
payload_size, len, packet_type);
break;
@@ -376,8 +375,8 @@ static int gdm_mux_send(void *priv_dev, void *data, int len, int tty_index,
mux_header->packet_type = __cpu_to_le16(packet_type[tty_index]);
memcpy(t->buf + MUX_HEADER_SIZE, data, len);
- memset(t->buf + MUX_HEADER_SIZE + len, 0, total_len - MUX_HEADER_SIZE -
- len);
+ memset(t->buf + MUX_HEADER_SIZE + len, 0,
+ total_len - MUX_HEADER_SIZE - len);
t->len = total_len;
t->callback = cb;