From b060efcc7a81bcfc2fabcb242ab8f6312c3aa78f Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Mon, 9 Dec 2013 23:57:33 +0100 Subject: device/dev_pager.c: remove forward declaration * Makefrag.am: Include device/blkio.h. * device/blkio.h: New file. Add copyright. [_DEVICE_BLKIO_H_]: Add ifndef. (block_io_mmap): Add prototype. * device/dev_pager.c: Include device/blkio.h. (block_io_mmap): Remove forward declaration. --- device/blkio.h | 24 ++++++++++++++++++++++++ device/dev_pager.c | 4 +--- 2 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 device/blkio.h (limited to 'device') diff --git a/device/blkio.h b/device/blkio.h new file mode 100644 index 0000000..13a1669 --- /dev/null +++ b/device/blkio.h @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2013 Free Software Foundation. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef _DEVICE_BLKIO_H_ +#define _DEVICE_BLKIO_H_ + +extern vm_offset_t block_io_mmap(void); + +#endif /* _DEVICE_BLKIO_H_ */ diff --git a/device/dev_pager.c b/device/dev_pager.c index 1330037..7bb7bd9 100644 --- a/device/dev_pager.c +++ b/device/dev_pager.c @@ -56,9 +56,7 @@ #include #include #include - -extern vm_offset_t block_io_mmap(); /* dummy routine to allow - mmap for block devices */ +#include /* * The device pager routines are called directly from the message -- cgit v1.2.3