memdev.h (9d7a57e9167eabcea2afbbea6d7b757f2f030680) | memdev.h (2fea6431120dc19a04430c68b2484524074b2e43) |
---|---|
1/*- 2 * Copyright (c) 2004 Mark R V Murray 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 12 unchanged lines hidden (view full) --- 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 | 1/*- 2 * Copyright (c) 2004 Mark R V Murray 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 12 unchanged lines hidden (view full) --- 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 |
29#ifndef _MACHINE_MEMDEV_H_ 30#define _MACHINE_MEMDEV_H_ 31 |
|
29#define CDEV_MINOR_MEM 0 30#define CDEV_MINOR_KMEM 1 31 32d_open_t memopen; 33d_read_t memrw; 34d_ioctl_t memioctl; 35d_mmap_t memmmap; 36 | 32#define CDEV_MINOR_MEM 0 33#define CDEV_MINOR_KMEM 1 34 35d_open_t memopen; 36d_read_t memrw; 37d_ioctl_t memioctl; 38d_mmap_t memmmap; 39 |
37void dev_mem_md_init(void); | 40#endif /* _MACHINE_MEMDEV_H_ */ |