Commit 03d69736 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

Staging: gdm724x: tty: Remove unnecessary macro 'gdm_tty_send'.

Remove the macro 'gdm_tty_send' which adds unnecessary complexity and has
arguments that could mistakenly be evaluated multiple times.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a4b0330e
...@@ -37,8 +37,6 @@ ...@@ -37,8 +37,6 @@
#define MUX_TX_MAX_SIZE 2048 #define MUX_TX_MAX_SIZE 2048
#define gdm_tty_send(n, d, l, i, c, b) (\
n->tty_dev->send_func(n->tty_dev->priv_dev, d, l, i, c, b))
#define gdm_tty_recv(n, c) (\ #define gdm_tty_recv(n, c) (\
n->tty_dev->recv_func(n->tty_dev->priv_dev, c)) n->tty_dev->recv_func(n->tty_dev->priv_dev, c))
#define gdm_tty_send_control(n, r, v, d, l) (\ #define gdm_tty_send_control(n, r, v, d, l) (\
...@@ -191,13 +189,12 @@ static int gdm_tty_write(struct tty_struct *tty, const unsigned char *buf, ...@@ -191,13 +189,12 @@ static int gdm_tty_write(struct tty_struct *tty, const unsigned char *buf,
while (1) { while (1) {
sending_len = min(MUX_TX_MAX_SIZE, remain); sending_len = min(MUX_TX_MAX_SIZE, remain);
gdm_tty_send(gdm, gdm->tty_dev->send_func(gdm->tty_dev->priv_dev,
(void *)(buf + sent_len), (void *)(buf + sent_len),
sending_len, sending_len,
gdm->index, gdm->index,
gdm_tty_send_complete, gdm_tty_send_complete,
gdm gdm);
);
sent_len += sending_len; sent_len += sending_len;
remain -= sending_len; remain -= sending_len;
if (remain <= 0) if (remain <= 0)
......
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