Date: Thu, 29 Mar 2012 15:47:30 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r233664 - in head/sys: dev/syscons sys Message-ID: <201203291547.q2TFlUab099649@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201203291547.q2TFlUab099649>