1 /* 2 * aQuantia Corporation Network Driver 3 * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 */ 9 10 /* File hw_atl_a0.h: Declaration of abstract interface for Atlantic hardware 11 * specific functions. 12 */ 13 14 #ifndef HW_ATL_A0_H 15 #define HW_ATL_A0_H 16 17 #include "../aq_common.h" 18 19 extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc100; 20 extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc107; 21 extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc108; 22 extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc109; 23 24 extern const struct aq_hw_ops hw_atl_ops_a0; 25 26 #endif /* HW_ATL_A0_H */ 27