1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-21 11:13:30 +00:00

Add function prototypes for static functions.

Requested by:	ken
This commit is contained in:
Matthew D Fleming 2010-10-11 22:44:05 +00:00
parent 857508a36c
commit 452909d7d9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213707

View File

@ -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