From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753095Ab2HSGof (ORCPT ); Sun, 19 Aug 2012 02:44:35 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:61029 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752100Ab2HSGod (ORCPT ); Sun, 19 Aug 2012 02:44:33 -0400 Date: Sat, 18 Aug 2012 23:44:29 -0700 From: Greg KH To: Huang Shijie Cc: alan@linux.intel.com, jirislaby@gmail.com, linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH] serial: add a new helper function Message-ID: <20120819064429.GA3252@kroah.com> References: <1345400832-23572-1-git-send-email-shijie8@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1345400832-23572-1-git-send-email-shijie8@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 > #include > #include > +#include > > > > @@ -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 :) greg k-h