18 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/* Atlantic Network Driver3 *4 * Copyright (C) 2014-2019 aQuantia Corporation5 * Copyright (C) 2019-2020 Marvell International Ltd.6 */7 8/* File aq_drvinfo.h: Declaration of common code for firmware info in sys.*/9 10#ifndef AQ_DRVINFO_H11#define AQ_DRVINFO_H12 13struct net_device;14 15int aq_drvinfo_init(struct net_device *ndev);16 17#endif /* AQ_DRVINFO_H */18