rtl8188eu: Remove all trailing spaces from code

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2014-12-19 00:59:46 -06:00
parent 8db176767f
commit bb33327257
190 changed files with 53569 additions and 53764 deletions

View file

@ -1,7 +1,7 @@
/******************************************************************************
*
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
@ -64,11 +64,11 @@
#define OID_MP_SEG3 0xFF818700
#define OID_MP_SEG4 0xFF011100
#define DEBUG_OID(dbg, str) \
if((!dbg)) \
{ \
#define DEBUG_OID(dbg, str) \
if((!dbg)) \
{ \
RT_TRACE(_module_rtl871x_ioctl_c_,_drv_info_,("%s(%d): %s", __FUNCTION__, __LINE__, str)); \
}
}
enum oid_type
@ -80,10 +80,10 @@ enum oid_type
struct oid_funs_node {
unsigned int oid_start; //the starting number for OID
unsigned int oid_end; //the ending number for OID
struct oid_obj_priv *node_array;
struct oid_obj_priv *node_array;
unsigned int array_sz; //the size of node_array
int query_counter; //count the number of query hits for this segment
int set_counter; //count the number of set hits for this segment
int query_counter; //count the number of query hits for this segment
int set_counter; //count the number of set hits for this segment
};
struct oid_par_priv
@ -99,8 +99,8 @@ struct oid_par_priv
};
struct oid_obj_priv {
unsigned char dbg; // 0: without OID debug message 1: with OID debug message
NDIS_STATUS (*oidfuns)(struct oid_par_priv *poid_par_priv);
unsigned char dbg; // 0: without OID debug message 1: with OID debug message
NDIS_STATUS (*oidfuns)(struct oid_par_priv *poid_par_priv);
};
#if defined(CONFIG_WIRELESS_EXT)
@ -116,7 +116,7 @@ extern NDIS_STATUS drv_query_info(
OUT u32* BytesNeeded
);
extern NDIS_STATUS drv_set_info(
extern NDIS_STATUS drv_set_info(
IN _nic_hdl MiniportAdapterContext,
IN NDIS_OID Oid,
IN void * InformationBuffer,
@ -126,4 +126,3 @@ extern NDIS_STATUS drv_set_info(
);
#endif // #ifndef __INC_CEINFO_