Deleted Added
full compact
libofw.h (84969) libofw.h (84975)
1/*
2 * Copyright (C) 2000 Benno Rice.
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

--- 8 unchanged lines hidden (view full) ---

17 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
1/*
2 * Copyright (C) 2000 Benno Rice.
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

--- 8 unchanged lines hidden (view full) ---

17 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 *
25 * $FreeBSD: head/sys/boot/ofw/libofw/libofw.h 84969 2001-10-15 09:28:07Z robert $
25 * $FreeBSD: head/sys/boot/ofw/libofw/libofw.h 84975 2001-10-15 12:16:20Z robert $
26 */
27
28#include "openfirm.h"
29
30/* Note: Must match the 'struct devdesc' in bootstrap.h */
31struct ofw_devdesc {
32 struct devsw *d_dev;
33 int d_type;

--- 64 unchanged lines hidden (view full) ---

98extern struct file_format ofw_elf;
99
100extern void reboot(void);
101
102extern int main(int (*openfirm)(void *));
103
104struct ofw_reg
105{
26 */
27
28#include "openfirm.h"
29
30/* Note: Must match the 'struct devdesc' in bootstrap.h */
31struct ofw_devdesc {
32 struct devsw *d_dev;
33 int d_type;

--- 64 unchanged lines hidden (view full) ---

98extern struct file_format ofw_elf;
99
100extern void reboot(void);
101
102extern int main(int (*openfirm)(void *));
103
104struct ofw_reg
105{
106 uint32_t base;
107 uint32_t size;
106 cell_t base;
107 cell_t size;
108};
108};