2019-06-01 16:08:37 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-01-24 14:09:12 +08:00
|
|
|
/*
|
|
|
|
* aQuantia Corporation Network Driver
|
|
|
|
* Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* File aq_main.h: Main file for aQuantia Linux driver. */
|
|
|
|
|
|
|
|
#ifndef AQ_MAIN_H
|
|
|
|
#define AQ_MAIN_H
|
|
|
|
|
|
|
|
#include "aq_common.h"
|
2019-04-29 18:04:45 +08:00
|
|
|
#include "aq_nic.h"
|
2017-01-24 14:09:12 +08:00
|
|
|
|
2019-04-29 18:04:45 +08:00
|
|
|
void aq_ndev_schedule_work(struct work_struct *work);
|
2018-01-15 21:41:18 +08:00
|
|
|
struct net_device *aq_ndev_alloc(void);
|
|
|
|
|
2017-01-24 14:09:12 +08:00
|
|
|
#endif /* AQ_MAIN_H */
|