Staging: Clean up sxg driver
Lindent the rest of the files in drivers/staging/sxg Signed off by: J.R. Mauro <jrm8005@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2ae5a6d20e
commit
bc36e6559c
@@ -44,7 +44,6 @@
|
|||||||
#define FALSE (0)
|
#define FALSE (0)
|
||||||
#define TRUE (1)
|
#define TRUE (1)
|
||||||
|
|
||||||
|
|
||||||
typedef struct _LIST_ENTRY {
|
typedef struct _LIST_ENTRY {
|
||||||
struct _LIST_ENTRY *nle_flink;
|
struct _LIST_ENTRY *nle_flink;
|
||||||
struct _LIST_ENTRY *nle_blink;
|
struct _LIST_ENTRY *nle_blink;
|
||||||
@@ -69,8 +68,7 @@ typedef struct _LIST_ENTRY {
|
|||||||
|
|
||||||
/* These two have to be inlined since they return things. */
|
/* These two have to be inlined since they return things. */
|
||||||
|
|
||||||
static __inline PLIST_ENTRY
|
static __inline PLIST_ENTRY RemoveHeadList(list_entry * l)
|
||||||
RemoveHeadList(list_entry *l)
|
|
||||||
{
|
{
|
||||||
list_entry *f;
|
list_entry *f;
|
||||||
list_entry *e;
|
list_entry *e;
|
||||||
@@ -83,8 +81,7 @@ RemoveHeadList(list_entry *l)
|
|||||||
return (e);
|
return (e);
|
||||||
}
|
}
|
||||||
|
|
||||||
static __inline PLIST_ENTRY
|
static __inline PLIST_ENTRY RemoveTailList(list_entry * l)
|
||||||
RemoveTailList(list_entry *l)
|
|
||||||
{
|
{
|
||||||
list_entry *b;
|
list_entry *b;
|
||||||
list_entry *e;
|
list_entry *e;
|
||||||
@@ -97,7 +94,6 @@ RemoveTailList(list_entry *l)
|
|||||||
return (e);
|
return (e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define InsertTailList(l, e) \
|
#define InsertTailList(l, e) \
|
||||||
do { \
|
do { \
|
||||||
list_entry *b; \
|
list_entry *b; \
|
||||||
@@ -120,7 +116,6 @@ RemoveTailList(list_entry *l)
|
|||||||
(l)->nle_flink = (e); \
|
(l)->nle_flink = (e); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
|
||||||
#define ATK_DEBUG 1
|
#define ATK_DEBUG 1
|
||||||
|
|
||||||
#if ATK_DEBUG
|
#if ATK_DEBUG
|
||||||
@@ -133,7 +128,6 @@ RemoveTailList(list_entry *l)
|
|||||||
#define SLIC_TIMESTAMP(value)
|
#define SLIC_TIMESTAMP(value)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/****************** SXG DEFINES *****************************************/
|
/****************** SXG DEFINES *****************************************/
|
||||||
|
|
||||||
#ifdef ATKDBG
|
#ifdef ATKDBG
|
||||||
@@ -151,4 +145,3 @@ RemoveTailList(list_entry *l)
|
|||||||
#define READ_REG(reg,value) (value) = readl((void __iomem *)(®))
|
#define READ_REG(reg,value) (value) = readl((void __iomem *)(®))
|
||||||
|
|
||||||
#endif /* _SLIC_OS_SPECIFIC_H_ */
|
#endif /* _SLIC_OS_SPECIFIC_H_ */
|
||||||
|
|
||||||
|
@@ -368,7 +368,6 @@ typedef struct _SXG_EVENT_RING {
|
|||||||
&(_TcpObject)->CompBuffer->Frame.HasVlan.TcpIp6.Ip : \
|
&(_TcpObject)->CompBuffer->Frame.HasVlan.TcpIp6.Ip : \
|
||||||
&(_TcpObject)->CompBuffer->Frame.NoVlan.TcpIp6.Ip
|
&(_TcpObject)->CompBuffer->Frame.NoVlan.TcpIp6.Ip
|
||||||
|
|
||||||
|
|
||||||
#if DBG
|
#if DBG
|
||||||
// Horrible kludge to distinguish dumb-nic, slowpath, and
|
// Horrible kludge to distinguish dumb-nic, slowpath, and
|
||||||
// fastpath traffic. Decrement the HopLimit by one
|
// fastpath traffic. Decrement the HopLimit by one
|
||||||
@@ -760,7 +759,6 @@ typedef struct _SXG_RCV_NBL_RESERVED {
|
|||||||
#define SXG_MIN_SGL_BUFFERS 2048 // Minimum amount and when to get more
|
#define SXG_MIN_SGL_BUFFERS 2048 // Minimum amount and when to get more
|
||||||
#define SXG_MAX_SGL_BUFFERS 16384 // Maximum to allocate (note ADAPT:ushort)
|
#define SXG_MAX_SGL_BUFFERS 16384 // Maximum to allocate (note ADAPT:ushort)
|
||||||
|
|
||||||
|
|
||||||
// Self identifying structure type
|
// Self identifying structure type
|
||||||
typedef enum _SXG_SGL_TYPE {
|
typedef enum _SXG_SGL_TYPE {
|
||||||
SXG_SGL_DUMB, // Dumb NIC SGL
|
SXG_SGL_DUMB, // Dumb NIC SGL
|
||||||
@@ -814,7 +812,6 @@ typedef struct _SCATTER_GATHER_ELEMENT {
|
|||||||
u64 Reserved; // u32 * in wdm.h. Force to 8 bytes
|
u64 Reserved; // u32 * in wdm.h. Force to 8 bytes
|
||||||
} SCATTER_GATHER_ELEMENT, *PSCATTER_GATHER_ELEMENT;
|
} SCATTER_GATHER_ELEMENT, *PSCATTER_GATHER_ELEMENT;
|
||||||
|
|
||||||
|
|
||||||
typedef struct _SCATTER_GATHER_LIST {
|
typedef struct _SCATTER_GATHER_LIST {
|
||||||
u32 NumberOfElements;
|
u32 NumberOfElements;
|
||||||
u32 *Reserved;
|
u32 *Reserved;
|
||||||
@@ -858,4 +855,3 @@ typedef struct _SXG_SCATTER_GATHER {
|
|||||||
#else
|
#else
|
||||||
Stop Compilation;
|
Stop Compilation;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user