From: David S. Miller Date: Wed, 26 Mar 2008 07:55:50 +0000 (-0700) Subject: [IRDA]: Store irnet_socket termios properly. X-Git-Tag: v2.6.25-rc8~77^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c7230f781749cd7261b504c0bfa188bb96e77ee;p=platform%2Fupstream%2Fkernel-adaptation-pc.git [IRDA]: Store irnet_socket termios properly. It should be a "struct ktermios" not a "struct termios". Based upon a build warning reported by Stephen Rothwell. Signed-off-by: David S. Miller --- diff --git a/net/irda/irnet/irnet.h b/net/irda/irnet/irnet.h index bc2e15c..7873c39 100644 --- a/net/irda/irnet/irnet.h +++ b/net/irda/irnet/irnet.h @@ -405,7 +405,7 @@ typedef struct irnet_socket /* "pppd" interact directly with us on a /dev/ file */ struct file * file; /* File descriptor of this instance */ /* TTY stuff - to keep "pppd" happy */ - struct termios termios; /* Various tty flags */ + struct ktermios termios; /* Various tty flags */ /* Stuff for the control channel */ int event_index; /* Last read in the event log */