svn commit: r230170 - stable/8/sys/dev/syscons

Andriy Gapon avg at FreeBSD.org
Sun Jan 15 22:05:16 UTC 2012


Author: avg
Date: Sun Jan 15 22:05:15 2012
New Revision: 230170
URL: http://svn.freebsd.org/changeset/base/230170

Log:
  MFC r228426: syscons: make sc_puts static as it is used only privately

Modified:
  stable/8/sys/dev/syscons/syscons.c
  stable/8/sys/dev/syscons/syscons.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/syscons/syscons.c
==============================================================================
--- stable/8/sys/dev/syscons/syscons.c	Sun Jan 15 22:04:28 2012	(r230169)
+++ stable/8/sys/dev/syscons/syscons.c	Sun Jan 15 22:05:15 2012	(r230170)
@@ -172,6 +172,7 @@ static scr_stat *sc_get_stat(struct tty 
 static void scterm(int unit, int flags);
 static void scshutdown(void *arg, int howto);
 static u_int scgetc(sc_softc_t *sc, u_int flags);
+static void sc_puts(scr_stat *scp, u_char *buf, int len, int kernel);
 #define SCGETC_CN	1
 #define SCGETC_NONBLOCK	2
 static void sccnupdate(scr_stat *scp);
@@ -2553,7 +2554,7 @@ exchange_scr(sc_softc_t *sc)
     mark_all(scp);
 }
 
-void
+static void
 sc_puts(scr_stat *scp, u_char *buf, int len, int kernel)
 {
     int need_unlock = 0;

Modified: stable/8/sys/dev/syscons/syscons.h
==============================================================================
--- stable/8/sys/dev/syscons/syscons.h	Sun Jan 15 22:04:28 2012	(r230169)
+++ stable/8/sys/dev/syscons/syscons.h	Sun Jan 15 22:05:15 2012	(r230170)
@@ -557,7 +557,6 @@ void		sc_save_font(scr_stat *scp, int pa
 void		sc_show_font(scr_stat *scp, int page);
 
 void		sc_touch_scrn_saver(void);
-void		sc_puts(scr_stat *scp, u_char *buf, int len, int kernel);
 void		sc_draw_cursor_image(scr_stat *scp);
 void		sc_remove_cursor_image(scr_stat *scp);
 void		sc_set_cursor_image(scr_stat *scp);


More information about the svn-src-all mailing list