24 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * aQuantia Corporation Network Driver4 * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved5 */6 7/* File hw_atl_a0.h: Declaration of abstract interface for Atlantic hardware8 * specific functions.9 */10 11#ifndef HW_ATL_A0_H12#define HW_ATL_A0_H13 14#include "../aq_common.h"15 16extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc100;17extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc107;18extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc108;19extern const struct aq_hw_caps_s hw_atl_a0_caps_aqc109;20 21extern const struct aq_hw_ops hw_atl_ops_a0;22 23#endif /* HW_ATL_A0_H */24