svn commit: r233664 - in head/sys: dev/syscons sys

Hans Petter Selasky hselasky at FreeBSD.org
Thu Mar 29 15:47:30 UTC 2012


Author: hselasky
Date: Thu Mar 29 15:47:29 2012
New Revision: 233664
URL: http://svn.freebsd.org/changeset/base/233664

Log:
  Move tty_opened_ns() into syscons.c which is currently the
  only client of this macro.
  
  Suggested by:	ed @
  MFC after:	1 week

Modified:
  head/sys/dev/syscons/syscons.c
  head/sys/sys/tty.h

Modified: head/sys/dev/syscons/syscons.c
==============================================================================
--- head/sys/dev/syscons/syscons.c	Thu Mar 29 15:43:07 2012	(r233663)
+++ head/sys/dev/syscons/syscons.c	Thu Mar 29 15:47:29 2012	(r233664)
@@ -86,6 +86,9 @@ __FBSDID("$FreeBSD$");
 
 #define KEYCODE_BS		0x0e		/* "<-- Backspace" key, XXX */
 
+/* NULL-safe version of "tty_opened()" */
+#define	tty_opened_ns(tp)	((tp) != NULL && tty_opened(tp))
+
 typedef struct default_attr {
 	int		std_color;		/* normal hardware color */
 	int		rev_color;		/* reverse hardware color */

Modified: head/sys/sys/tty.h
==============================================================================
--- head/sys/sys/tty.h	Thu Mar 29 15:43:07 2012	(r233663)
+++ head/sys/sys/tty.h	Thu Mar 29 15:47:29 2012	(r233664)
@@ -197,8 +197,6 @@ void	tty_hiwat_in_block(struct tty *tp);
 void	tty_hiwat_in_unblock(struct tty *tp);
 dev_t	tty_udev(struct tty *tp);
 #define	tty_opened(tp)		((tp)->t_flags & TF_OPENED)
-/* NULL-safe version of "tty_opened()" */
-#define	tty_opened_ns(tp)	((tp) != NULL && tty_opened(tp))
 #define	tty_gone(tp)		((tp)->t_flags & TF_GONE)
 #define	tty_softc(tp)		((tp)->t_devswsoftc)
 #define	tty_devname(tp)		devtoname((tp)->t_dev)


More information about the svn-src-all mailing list