aq_main.h (466B)
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 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); 19 20#endif /* AQ_MAIN_H */