1658d439bSTaku Izumi /* 2658d439bSTaku Izumi * FUJITSU Extended Socket Network Device driver 3658d439bSTaku Izumi * Copyright (c) 2015 FUJITSU LIMITED 4658d439bSTaku Izumi * 5658d439bSTaku Izumi * This program is free software; you can redistribute it and/or modify it 6658d439bSTaku Izumi * under the terms and conditions of the GNU General Public License, 7658d439bSTaku Izumi * version 2, as published by the Free Software Foundation. 8658d439bSTaku Izumi * 9658d439bSTaku Izumi * This program is distributed in the hope it will be useful, but WITHOUT 10658d439bSTaku Izumi * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11658d439bSTaku Izumi * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12658d439bSTaku Izumi * more details. 13658d439bSTaku Izumi * 14658d439bSTaku Izumi * You should have received a copy of the GNU General Public License along with 15658d439bSTaku Izumi * this program; if not, see <http://www.gnu.org/licenses/>. 16658d439bSTaku Izumi * 17658d439bSTaku Izumi * The full GNU General Public License is included in this distribution in 18658d439bSTaku Izumi * the file called "COPYING". 19658d439bSTaku Izumi * 20658d439bSTaku Izumi */ 21658d439bSTaku Izumi 22658d439bSTaku Izumi #ifndef FJES_H_ 23658d439bSTaku Izumi #define FJES_H_ 24658d439bSTaku Izumi 25658d439bSTaku Izumi #include <linux/acpi.h> 26658d439bSTaku Izumi 27658d439bSTaku Izumi #define FJES_ACPI_SYMBOL "Extended Socket" 28658d439bSTaku Izumi 29658d439bSTaku Izumi extern char fjes_driver_name[]; 30658d439bSTaku Izumi extern char fjes_driver_version[]; 31*8cdc3f6cSTaku Izumi extern const u32 fjes_support_mtu[]; 32658d439bSTaku Izumi 33658d439bSTaku Izumi #endif /* FJES_H_ */ 34