[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <alpine.LFD.1.10.0806040852500.3473@woody.linux-foundation.org>
Date: Wed, 4 Jun 2008 08:59:49 -0700 (PDT)
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Alan Cox <alan@...rguk.ukuu.org.uk>
cc: gyang <graf.yang@...log.com>, Bryan Wu <cooloney@...nel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] serial_core: uart_set_ldisc (Was Re: Blackfin Serial
Driver: Enable IR function when user application (irattach /dev/ttyBFx -s)
call TIOCSETD ioctl with line discipline N_IRDA)
On Tue, 3 Jun 2008, Alan Cox wrote:
>
> Linus: This change plus a follow up from the Blackfin guys is needed to
> avoid blackfin losing features in this release.
Alan, I applied this as "obviously safe", since nobody sets the uart-level
set_ldisc thing yet... BUT!
I now get an annoying compiler warning, and the compiler is definitely
right. You have:
static void uart_set_ldisc(struct tty_struct *tty, int ldisc)
..
.set_ldisc = uart_set_ldisc,
Oops. Totally wrong function type. Because the tty-level one is
void (*set_ldisc)(struct tty_struct *tty);
in my tree, and as a result I suspect you sent me the wrong version of a
patch (perhaps based on -mm or -next).
I assume I should just remove the (unused) "int ldisc" argument, but would
like to get confirmation first.
Linus
--
drivers/serial/serial_core.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/serial/serial_core.c b/drivers/serial/serial_core.c
index 951a75e..c9b64e7 100644
--- a/drivers/serial/serial_core.c
+++ b/drivers/serial/serial_core.c
@@ -1165,7 +1165,7 @@ out:
return ret;
}
-static void uart_set_ldisc(struct tty_struct *tty, int ldisc)
+static void uart_set_ldisc(struct tty_struct *tty)
{
struct uart_state *state = tty->driver_data;
struct uart_port *port = state->port;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists