From owner-cvs-src@FreeBSD.ORG Mon Sep 22 18:45:58 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21FF9106564A; Mon, 22 Sep 2008 18:45:58 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0EA358FC12; Mon, 22 Sep 2008 18:45:58 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m8MIjvgC044621; Mon, 22 Sep 2008 18:45:57 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m8MIjvjR044612; Mon, 22 Sep 2008 18:45:57 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200809221845.m8MIjvjR044612@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Mon, 22 Sep 2008 18:44:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern tty_ttydisc.c src/sys/sys tty.h ttydevsw.h ttydisc.h ttyqueue.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2008 18:45:58 -0000 ed 2008-09-22 18:44:09 UTC FreeBSD src repository Modified files: sys/kern tty_ttydisc.c sys/sys tty.h ttydevsw.h ttydisc.h ttyqueue.h Log: SVN rev 183274 on 2008-09-22 18:44:09Z by ed Fix style(9) issue in TTY header files: document function argument names. According to style(9), function argument names should only be omitted for prototypes that are exported to userspace. This means we should document the function arguments in the TTY header files, because they are only used in userspace. While there, change the type of the buffer argument of ttydisc_rint_bypass() to `const void *' instead of `char *'. Requested by: attilio Obtained from: //depot/projects/mpsafetty/... Revision Changes Path 1.5 +1 -1 src/sys/kern/tty_ttydisc.c 1.107 +23 -22 src/sys/sys/tty.h 1.3 +12 -10 src/sys/sys/ttydevsw.h 1.5 +11 -11 src/sys/sys/ttydisc.h 1.3 +28 -25 src/sys/sys/ttyqueue.h