mirror of
https://github.com/qosmio/nss-packages.git
synced 2025-12-18 09:11:43 +00:00
wwan: quectel_QMI_WWAN: Refactor rmnet_nss macros
Signed-off-by: Sean Khan <datapronix@protonmail.com>
This commit is contained in:
parent
3d08e1c0ba
commit
1d6a7492fe
@ -33,6 +33,8 @@
|
|||||||
#include <linux/usb/usbnet.h>
|
#include <linux/usb/usbnet.h>
|
||||||
#include <linux/usb/cdc-wdm.h>
|
#include <linux/usb/cdc-wdm.h>
|
||||||
|
|
||||||
|
#include "rmnet_nss.h"
|
||||||
|
|
||||||
#ifndef ETH_P_MAP
|
#ifndef ETH_P_MAP
|
||||||
#define ETH_P_MAP 0xDA1A
|
#define ETH_P_MAP 0xDA1A
|
||||||
#endif
|
#endif
|
||||||
@ -51,13 +53,6 @@
|
|||||||
//#define CONFIG_QCA_NSS_PACKET_FILTER
|
//#define CONFIG_QCA_NSS_PACKET_FILTER
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define _RMNET_NSS_H_
|
|
||||||
#define _RMENT_NSS_H_
|
|
||||||
struct rmnet_nss_cb {
|
|
||||||
int (*nss_create)(struct net_device *dev);
|
|
||||||
int (*nss_free)(struct net_device *dev);
|
|
||||||
int (*nss_tx)(struct sk_buff *skb);
|
|
||||||
};
|
|
||||||
static struct rmnet_nss_cb __read_mostly *nss_cb = NULL;
|
static struct rmnet_nss_cb __read_mostly *nss_cb = NULL;
|
||||||
#if defined(CONFIG_PINCTRL_IPQ807x) || defined(CONFIG_PINCTRL_IPQ5018) || defined(CONFIG_PINCTRL_IPQ8074)
|
#if defined(CONFIG_PINCTRL_IPQ807x) || defined(CONFIG_PINCTRL_IPQ5018) || defined(CONFIG_PINCTRL_IPQ8074)
|
||||||
//#ifdef CONFIG_RMNET_DATA //spf12.x none, not effect for spf11.x
|
//#ifdef CONFIG_RMNET_DATA //spf12.x none, not effect for spf11.x
|
||||||
|
|||||||
@ -22,18 +22,7 @@
|
|||||||
#include <linux/version.h>
|
#include <linux/version.h>
|
||||||
#include <nss_api_if.h>
|
#include <nss_api_if.h>
|
||||||
|
|
||||||
#ifndef _RMNET_NSS_H_
|
#include "rmnet_nss.h"
|
||||||
#define _RMENT_NSS_H_
|
|
||||||
|
|
||||||
struct rmnet_nss_cb {
|
|
||||||
int (*nss_create)(struct net_device *dev);
|
|
||||||
int (*nss_free)(struct net_device *dev);
|
|
||||||
int (*nss_tx)(struct sk_buff *skb);
|
|
||||||
};
|
|
||||||
|
|
||||||
extern struct rmnet_nss_cb *rmnet_nss_callbacks;
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define RMNET_NSS_HASH_BITS 8
|
#define RMNET_NSS_HASH_BITS 8
|
||||||
#define hash_add_ptr(table, node, key) \
|
#define hash_add_ptr(table, node, key) \
|
||||||
@ -41,6 +30,8 @@ extern struct rmnet_nss_cb *rmnet_nss_callbacks;
|
|||||||
|
|
||||||
static DEFINE_HASHTABLE(rmnet_nss_ctx_hashtable, RMNET_NSS_HASH_BITS);
|
static DEFINE_HASHTABLE(rmnet_nss_ctx_hashtable, RMNET_NSS_HASH_BITS);
|
||||||
|
|
||||||
|
struct rmnet_nss_cb *rmnet_nss_callbacks;
|
||||||
|
|
||||||
struct rmnet_nss_ctx {
|
struct rmnet_nss_ctx {
|
||||||
struct hlist_node hnode;
|
struct hlist_node hnode;
|
||||||
struct net_device *rmnet_dev;
|
struct net_device *rmnet_dev;
|
||||||
|
|||||||
27
wwan/driver/quectel_QMI_WWAN/src/rmnet_nss.h
Normal file
27
wwan/driver/quectel_QMI_WWAN/src/rmnet_nss.h
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/* Copyright (c) 2019-2021, The Linux Foundation. All rights reserved.
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
* copyright notice and this permission notice appear in all copies.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
*/
|
||||||
|
#ifndef _RMNET_NSS_H_
|
||||||
|
#define _RMNET_NSS_H_
|
||||||
|
|
||||||
|
#include <linux/netdevice.h>
|
||||||
|
#include <linux/skbuff.h>
|
||||||
|
|
||||||
|
struct rmnet_nss_cb {
|
||||||
|
int (*nss_create)(struct net_device *dev);
|
||||||
|
int (*nss_free)(struct net_device *dev);
|
||||||
|
int (*nss_tx)(struct sk_buff *skb);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
Loading…
Reference in New Issue
Block a user