Author: mdf
Date: Mon Oct 11 22:44:05 2010
New Revision: 213707
URL: http://svn.freebsd.org/changeset/base/213707

Log:
  Add function prototypes for static functions.
  
  Requested by: ken

Modified:
  head/sys/dev/mps/mps_user.c

Modified: head/sys/dev/mps/mps_user.c
==============================================================================
--- head/sys/dev/mps/mps_user.c Mon Oct 11 22:41:01 2010        (r213706)
+++ head/sys/dev/mps/mps_user.c Mon Oct 11 22:44:05 2010        (r213707)
@@ -79,6 +79,19 @@ static struct cdevsw mps_cdevsw = {
        .d_name =       "mps",
 };
 
+static int mps_user_read_cfg_header(struct mps_softc *,
+                                   struct mps_cfg_page_req *);
+static int mps_user_read_cfg_page(struct mps_softc *,
+                                 struct mps_cfg_page_req *, void *);
+static int mps_user_read_extcfg_header(struct mps_softc *,
+                                    struct mps_ext_cfg_page_req *);
+static int mps_user_read_extcfg_page(struct mps_softc *,
+                                    struct mps_ext_cfg_page_req *, void *);
+static int mps_user_write_cfg_page(struct mps_softc *,
+                                  struct mps_cfg_page_req *, void *);
+static int mps_user_verify_request(MPI2_REQUEST_HEADER *, MPI2_SGE_IO_UNION 
**);
+static int mps_user_command(struct mps_softc *, struct mps_usr_command *);
+
 static MALLOC_DEFINE(M_MPSUSER, "mps_user", "Buffers for mps(4) ioctls");
 
 int
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to