1*d6b92ffaSHans Petter Selasky /* 2*d6b92ffaSHans Petter Selasky * Copyright (c) 2004-2008 Voltaire, Inc. All rights reserved. 3*d6b92ffaSHans Petter Selasky * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved. 4*d6b92ffaSHans Petter Selasky * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. 5*d6b92ffaSHans Petter Selasky * 6*d6b92ffaSHans Petter Selasky * This software is available to you under a choice of one of two 7*d6b92ffaSHans Petter Selasky * licenses. You may choose to be licensed under the terms of the GNU 8*d6b92ffaSHans Petter Selasky * General Public License (GPL) Version 2, available from the file 9*d6b92ffaSHans Petter Selasky * COPYING in the main directory of this source tree, or the 10*d6b92ffaSHans Petter Selasky * OpenIB.org BSD license below: 11*d6b92ffaSHans Petter Selasky * 12*d6b92ffaSHans Petter Selasky * Redistribution and use in source and binary forms, with or 13*d6b92ffaSHans Petter Selasky * without modification, are permitted provided that the following 14*d6b92ffaSHans Petter Selasky * conditions are met: 15*d6b92ffaSHans Petter Selasky * 16*d6b92ffaSHans Petter Selasky * - Redistributions of source code must retain the above 17*d6b92ffaSHans Petter Selasky * copyright notice, this list of conditions and the following 18*d6b92ffaSHans Petter Selasky * disclaimer. 19*d6b92ffaSHans Petter Selasky * 20*d6b92ffaSHans Petter Selasky * - Redistributions in binary form must reproduce the above 21*d6b92ffaSHans Petter Selasky * copyright notice, this list of conditions and the following 22*d6b92ffaSHans Petter Selasky * disclaimer in the documentation and/or other materials 23*d6b92ffaSHans Petter Selasky * provided with the distribution. 24*d6b92ffaSHans Petter Selasky * 25*d6b92ffaSHans Petter Selasky * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 26*d6b92ffaSHans Petter Selasky * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 27*d6b92ffaSHans Petter Selasky * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 28*d6b92ffaSHans Petter Selasky * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 29*d6b92ffaSHans Petter Selasky * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 30*d6b92ffaSHans Petter Selasky * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 31*d6b92ffaSHans Petter Selasky * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 32*d6b92ffaSHans Petter Selasky * SOFTWARE. 33*d6b92ffaSHans Petter Selasky * 34*d6b92ffaSHans Petter Selasky */ 35*d6b92ffaSHans Petter Selasky 36*d6b92ffaSHans Petter Selasky /* 37*d6b92ffaSHans Petter Selasky * Abstract: 38*d6b92ffaSHans Petter Selasky * Include file used by OpenSM to pull in the correct vendor file. 39*d6b92ffaSHans Petter Selasky */ 40*d6b92ffaSHans Petter Selasky 41*d6b92ffaSHans Petter Selasky /* 42*d6b92ffaSHans Petter Selasky this is the generic include file which includes 43*d6b92ffaSHans Petter Selasky the proper vendor specific file 44*d6b92ffaSHans Petter Selasky */ 45*d6b92ffaSHans Petter Selasky #include <opensm/osm_config.h> 46*d6b92ffaSHans Petter Selasky 47*d6b92ffaSHans Petter Selasky #if defined( OSM_VENDOR_INTF_TEST ) 48*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_test.h> 49*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_UMADT ) 50*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_umadt.h> 51*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_MTL ) 52*d6b92ffaSHans Petter Selasky /* HACK - I do not know how to prevent complib from loading kernel H files */ 53*d6b92ffaSHans Petter Selasky #undef __init 54*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_mlx.h> 55*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_TS ) 56*d6b92ffaSHans Petter Selasky #undef __init 57*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_mlx.h> 58*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_ANAFA ) 59*d6b92ffaSHans Petter Selasky #undef __init 60*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_mlx.h> 61*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_SIM ) 62*d6b92ffaSHans Petter Selasky #undef __init 63*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_mlx.h> 64*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_OPENIB ) 65*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_ibumad.h> 66*d6b92ffaSHans Petter Selasky #elif defined( OSM_VENDOR_INTF_AL ) 67*d6b92ffaSHans Petter Selasky #include <vendor/osm_vendor_al.h> 68*d6b92ffaSHans Petter Selasky #else 69*d6b92ffaSHans Petter Selasky #error No MAD Interface selected! 70*d6b92ffaSHans Petter Selasky #error Choose an interface in osm_config.h 71*d6b92ffaSHans Petter Selasky #endif 72