[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAMiH66ER7ZRBhdK1QS-vjihwEGmEA4Tdep_eLQHZjpeXU1am7g@mail.gmail.com>
Date: Sun, 19 Aug 2012 03:00:56 -0400
From: Huang Shijie <shijie8@...il.com>
To: Greg KH <gregkh@...uxfoundation.org>
Cc: alan@...ux.intel.com, jirislaby@...il.com,
linux-kernel@...r.kernel.org, linux-serial@...r.kernel.org,
netdev@...r.kernel.org
Subject: Re: [PATCH] serial: add a new helper function
On Sun, Aug 19, 2012 at 2:44 AM, Greg KH <gregkh@...uxfoundation.org> wrote:
> On Sun, Aug 19, 2012 at 02:27:12PM -0400, Huang Shijie wrote:
>> --- a/include/linux/tty.h
>> +++ b/include/linux/tty.h
>> @@ -43,6 +43,7 @@
>> #include <linux/tty_driver.h>
>> #include <linux/tty_ldisc.h>
>> #include <linux/mutex.h>
>> +#include <linux/serial.h>
>>
>>
>>
>> @@ -513,6 +514,12 @@ static inline struct tty_port *tty_port_get(struct tty_port *port)
>> return port;
>> }
>>
>> +/* If the cts flow control is enabled, return true. */
>> +static inline bool tty_port_cts_enabled(struct tty_port *port)
>> +{
>> + return port->flags & ASYNC_CTS_FLOW;
>> +}
>> +
>
> The fact that you have to add serial.h to this file kind of implies that
> this function shouldn't be here, right?
>
> How about serial.h instead? Not all tty drivers are serial drivers :)
OK.
thanks for so quick review.
Huang Shijie
>
> greg k-h
--
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