1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * aQuantia Corporation Network Driver
4  * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
5  */
6 
7 /* File aq_main.h: Main file for aQuantia Linux driver. */
8 
9 #ifndef AQ_MAIN_H
10 #define AQ_MAIN_H
11 
12 #include "aq_common.h"
13 #include "aq_nic.h"
14 
15 void aq_ndev_schedule_work(struct work_struct *work);
16 struct net_device *aq_ndev_alloc(void);
17 
18 #endif /* AQ_MAIN_H */
19