| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * aQuantia Corporation Network Driver |
|---|
| 3 | 4 | * 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 | 5 | */ |
|---|
| 9 | 6 | |
|---|
| 10 | 7 | /* File aq_main.h: Main file for aQuantia Linux driver. */ |
|---|
| .. | .. |
|---|
| 13 | 10 | #define AQ_MAIN_H |
|---|
| 14 | 11 | |
|---|
| 15 | 12 | #include "aq_common.h" |
|---|
| 13 | +#include "aq_nic.h" |
|---|
| 16 | 14 | |
|---|
| 15 | +void aq_ndev_schedule_work(struct work_struct *work); |
|---|
| 17 | 16 | struct net_device *aq_ndev_alloc(void); |
|---|
| 17 | +int aq_ndev_open(struct net_device *ndev); |
|---|
| 18 | +int aq_ndev_close(struct net_device *ndev); |
|---|
| 18 | 19 | |
|---|
| 19 | 20 | #endif /* AQ_MAIN_H */ |
|---|