1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at 9 * http://www.opensource.org/licenses/cddl1.txt. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright (c) 2004-2012 Emulex. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _EMLXS_H 28 #define _EMLXS_H 29 30 #ifdef __cplusplus 31 extern "C" { 32 #endif 33 34 #define DRIVER_NAME "emlxs" 35 36 #include <emlxs_os.h> 37 #include <emlxs_fcio.h> 38 #include <emlxs_hw.h> 39 #include <emlxs_mbox.h> 40 #include <emlxs_queue.h> 41 #include <emlxs_iocb.h> 42 #include <emlxs_fw.h> 43 #include <emlxs_adapters.h> 44 #include <emlxs_msg.h> 45 #include <emlxs_events.h> 46 #include <emlxs_thread.h> 47 #include <emlxs_config.h> 48 #include <emlxs_dfclib.h> 49 50 #ifdef DHCHAP_SUPPORT 51 #include <emlxs_dhchap.h> 52 #endif /* DHCHAP_SUPPORT */ 53 54 #ifdef SFCT_SUPPORT 55 #include <emlxs_fct.h> 56 #endif /* SFCT_SUPPORT */ 57 58 #ifdef SAN_DIAG_SUPPORT 59 #include <emlxs_sdapi.h> 60 #endif /* SAN_DIAG_SUPPORT */ 61 62 #ifdef DUMP_SUPPORT 63 #include <emlxs_dump.h> 64 #endif /* DUMP_SUPPORT */ 65 66 #include <emlxs_fc.h> 67 #include <emlxs_device.h> 68 #include <emlxs_dfc.h> 69 #include <emlxs_fcio.h> 70 71 #ifdef MENLO_SUPPORT 72 #include <emlxs_menlo.h> 73 #endif /* MENLO_SUPPORT */ 74 75 #include <emlxs_extern.h> 76 77 #ifdef __cplusplus 78 } 79 #endif 80 81 #endif /* _EMLXS_H */ 82