wi: clean up empty lines in .c and .h files

This commit is contained in:
Mateusz Guzik 2020-09-01 21:46:42 +00:00
parent 391a27c41d
commit 8ffce1e79d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=365131
5 changed files with 2 additions and 13 deletions

View File

@ -478,7 +478,6 @@ struct wi_rx_frame {
#define WI_MGMT_HDRLEN 0x3C
#define WI_CTL_HDRLEN 0x3C
/*
* all data packets have a snap (sub-network access protocol) header that
* isn't entirely definied, but added for ethernet compatibility.
@ -488,7 +487,6 @@ struct wi_snap_frame {
u_int16_t wi_type;
};
/*
* management frame headers
* note: all management frames consist of a static header and variable length
@ -592,7 +590,6 @@ struct wi_mgmt_deauth_hdr {
u_int16_t wi_reason;
};
/*
* rid configuration register definitions
*/
@ -602,7 +599,6 @@ struct wi_mgmt_deauth_hdr {
#define WI_RID_PROCFRAME 0x3137 /* Return full frame information */
#define WI_RID_PRISM2 0x3138 /* tell if we're a prism2 card or not */
/*
* 802.11 definitions
*/
@ -650,7 +646,6 @@ struct wi_mgmt_deauth_hdr {
#define WI_FCS_LEN 0x4 /* checksum length */
/*
* management definitions
*/
@ -693,7 +688,6 @@ struct wi_mgmt_deauth_hdr {
#define WI_VAR_SRATES_MASK 0x7F
/*
* control definitions
*/
@ -704,7 +698,6 @@ struct wi_mgmt_deauth_hdr {
#define WI_STYPE_CTL_CFEND 0x00E0
#define WI_STYPE_CTL_CFENDCFACK 0x00F0
/*
* ap scanning structures
*/
@ -729,7 +722,6 @@ struct wi_scan_p2_hdr {
};
#define WI_PRISM2_RES_SIZE 62
/*
* prism2 debug mode definitions
*/

View File

@ -162,7 +162,7 @@ static void wi_scan_end(struct ieee80211com *);
static void wi_getradiocaps(struct ieee80211com *, int, int *,
struct ieee80211_channel[]);
static void wi_set_channel(struct ieee80211com *);
static __inline int
wi_write_val(struct wi_softc *sc, int rid, u_int16_t val)
{

View File

@ -87,7 +87,6 @@ static device_method_t wi_macio_methods[] = {
DEVMETHOD(device_attach, wi_macio_attach),
DEVMETHOD(device_detach, wi_detach),
DEVMETHOD(device_shutdown, wi_shutdown),
{ 0, 0 }
};

View File

@ -85,7 +85,6 @@ static device_method_t wi_pccard_methods[] = {
DEVMETHOD(device_attach, wi_pccard_attach),
DEVMETHOD(device_detach, wi_detach),
DEVMETHOD(device_shutdown, wi_shutdown),
{ 0, 0 }
};

View File

@ -84,7 +84,6 @@ static device_method_t wi_pci_methods[] = {
DEVMETHOD(device_shutdown, wi_shutdown),
DEVMETHOD(device_suspend, wi_pci_suspend),
DEVMETHOD(device_resume, wi_pci_resume),
{ 0, 0 }
};
@ -246,7 +245,7 @@ wi_pci_suspend(device_t dev)
WI_LOCK(sc);
wi_stop(sc, 1);
WI_UNLOCK(sc);
return (0);
}