brintos

brintos / linux-shallow public Read only

0
0
Text · 553 B · a78c1a1 Raw
23 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 aq_main.h: Main file for aQuantia Linux driver. */8 9#ifndef AQ_MAIN_H10#define AQ_MAIN_H11 12#include "aq_common.h"13#include "aq_nic.h"14 15DECLARE_STATIC_KEY_FALSE(aq_xdp_locking_key);16 17void aq_ndev_schedule_work(struct work_struct *work);18struct net_device *aq_ndev_alloc(void);19int aq_ndev_open(struct net_device *ndev);20int aq_ndev_close(struct net_device *ndev);21 22#endif /* AQ_MAIN_H */23