mainbusvar.h revision 1.1
11.1Shikaru/* $NetBSD: mainbusvar.h,v 1.1 2015/04/29 08:32:01 hikaru Exp $ */ 21.1Shikaru 31.1Shikaru/* 41.1Shikaru * Copyright (c) 2007 51.1Shikaru * Internet Initiative Japan, Inc. All rights reserved. 61.1Shikaru * 71.1Shikaru * Redistribution and use in source and binary forms, with or without 81.1Shikaru * modification, are permitted provided that the following conditions 91.1Shikaru * are met: 101.1Shikaru * 1. Redistributions of source code must retain the above copyright 111.1Shikaru * notice, this list of conditions and the following disclaimer. 121.1Shikaru * 2. Redistributions in binary form must reproduce the above copyright 131.1Shikaru * notice, this list of conditions and the following disclaimer in the 141.1Shikaru * documentation and/or other materials provided with the distribution. 151.1Shikaru * 161.1Shikaru * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 171.1Shikaru * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 181.1Shikaru * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 191.1Shikaru * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 201.1Shikaru * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 211.1Shikaru * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 221.1Shikaru * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 231.1Shikaru * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 241.1Shikaru * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 251.1Shikaru * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 261.1Shikaru * SUCH DAMAGE. 271.1Shikaru */ 281.1Shikaru 291.1Shikaru#ifndef _MIPS_OCTEON_DEV_MAINBUSVAR_H_ 301.1Shikaru#define _MIPS_OCTEON_DEV_MAINBUSVAR_H_ 311.1Shikaru 321.1Shikarustruct mainbus_attach_args { 331.1Shikaru const char *aa_name; 341.1Shikaru const int *aa_locs; 351.1Shikaru}; 361.1Shikaru 371.1Shikaruextern const char * const mainbus_devs[]; 381.1Shikaruextern const size_t mainbus_ndevs; 391.1Shikaru 401.1Shikaru#endif /* !_MIPS_OCTEON_DEV_MAINBUSVAR_H_ */ 41