1*cb34ed44SMarcel Moolenaar /*- 2*cb34ed44SMarcel Moolenaar * Copyright (c) 2013 Juniper Networks, Inc. 3*cb34ed44SMarcel Moolenaar * All rights reserved. 4*cb34ed44SMarcel Moolenaar * 5*cb34ed44SMarcel Moolenaar * Redistribution and use in source and binary forms, with or without 6*cb34ed44SMarcel Moolenaar * modification, are permitted provided that the following conditions 7*cb34ed44SMarcel Moolenaar * are met: 8*cb34ed44SMarcel Moolenaar * 1. Redistributions of source code must retain the above copyright 9*cb34ed44SMarcel Moolenaar * notice, this list of conditions and the following disclaimer. 10*cb34ed44SMarcel Moolenaar * 2. Redistributions in binary form must reproduce the above copyright 11*cb34ed44SMarcel Moolenaar * notice, this list of conditions and the following disclaimer in the 12*cb34ed44SMarcel Moolenaar * documentation and/or other materials provided with the distribution. 13*cb34ed44SMarcel Moolenaar * 14*cb34ed44SMarcel Moolenaar * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*cb34ed44SMarcel Moolenaar * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*cb34ed44SMarcel Moolenaar * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*cb34ed44SMarcel Moolenaar * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*cb34ed44SMarcel Moolenaar * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*cb34ed44SMarcel Moolenaar * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*cb34ed44SMarcel Moolenaar * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*cb34ed44SMarcel Moolenaar * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*cb34ed44SMarcel Moolenaar * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*cb34ed44SMarcel Moolenaar * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*cb34ed44SMarcel Moolenaar * SUCH DAMAGE. 25*cb34ed44SMarcel Moolenaar * 26*cb34ed44SMarcel Moolenaar * $FreeBSD$ 27*cb34ed44SMarcel Moolenaar */ 28*cb34ed44SMarcel Moolenaar 29*cb34ed44SMarcel Moolenaar #ifndef _MACHINE_OFW_MACHDEP_H_ 30*cb34ed44SMarcel Moolenaar #define _MACHINE_OFW_MACHDEP_H_ 31*cb34ed44SMarcel Moolenaar 32*cb34ed44SMarcel Moolenaar #include <x86/bus.h> 33*cb34ed44SMarcel Moolenaar 34*cb34ed44SMarcel Moolenaar typedef uint32_t cell_t; 35*cb34ed44SMarcel Moolenaar 36*cb34ed44SMarcel Moolenaar #endif /* _MACHINE_OFW_MACHDEP_H_ */ 37