Staging: rtl8192u: r8180_93cx6.c Added missing spaces

Added spaces needed in the proper places to address:

ERROR: space required after that ',' (ctx:VxV)
ERROR: space required after that ';' (ctx:VxV)
ERROR: space required after that close brace '}'
ERROR: space required before the open brace '{'
ERROR: space required before the open parenthesis '('
ERROR: spaces required around that '<' (ctx:VxV)
ERROR: spaces required around that '=' (ctx:VxV)
ERROR: spaces required around that '==' (ctx:VxV)

Signed-off-by: Chaitanya Hazarey <c@24.io>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chaitanya Hazarey 2014-05-27 15:35:09 -07:00 committed by Greg Kroah-Hartman
parent 47d5636026
commit 6371f2105a
1 changed files with 23 additions and 23 deletions

View File

@ -53,7 +53,7 @@ static void eprom_ck_cycle(struct net_device *dev)
} }
static void eprom_w(struct net_device *dev,short bit) static void eprom_w(struct net_device *dev, short bit)
{ {
u8 cmdreg; u8 cmdreg;
@ -86,7 +86,7 @@ static void eprom_send_bits_string(struct net_device *dev, short b[], int len)
{ {
int i; int i;
for(i=0; i<len; i++){ for (i = 0; i < len; i++) {
eprom_w(dev, b[i]); eprom_w(dev, b[i]);
eprom_ck_cycle(dev); eprom_ck_cycle(dev);
} }
@ -96,37 +96,37 @@ static void eprom_send_bits_string(struct net_device *dev, short b[], int len)
u32 eprom_read(struct net_device *dev, u32 addr) u32 eprom_read(struct net_device *dev, u32 addr)
{ {
struct r8192_priv *priv = ieee80211_priv(dev); struct r8192_priv *priv = ieee80211_priv(dev);
short read_cmd[]={1,1,0}; short read_cmd[] = {1, 1, 0};
short addr_str[8]; short addr_str[8];
int i; int i;
int addr_len; int addr_len;
u32 ret; u32 ret;
ret=0; ret = 0;
//enable EPROM programming //enable EPROM programming
write_nic_byte_E(dev, EPROM_CMD, write_nic_byte_E(dev, EPROM_CMD,
(EPROM_CMD_PROGRAM<<EPROM_CMD_OPERATING_MODE_SHIFT)); (EPROM_CMD_PROGRAM<<EPROM_CMD_OPERATING_MODE_SHIFT));
force_pci_posting(dev); force_pci_posting(dev);
udelay(EPROM_DELAY); udelay(EPROM_DELAY);
if (priv->epromtype==EPROM_93c56){ if (priv->epromtype == EPROM_93c56) {
addr_str[7]=addr & 1; addr_str[7] = addr & 1;
addr_str[6]=addr & (1<<1); addr_str[6] = addr & (1<<1);
addr_str[5]=addr & (1<<2); addr_str[5] = addr & (1<<2);
addr_str[4]=addr & (1<<3); addr_str[4] = addr & (1<<3);
addr_str[3]=addr & (1<<4); addr_str[3] = addr & (1<<4);
addr_str[2]=addr & (1<<5); addr_str[2] = addr & (1<<5);
addr_str[1]=addr & (1<<6); addr_str[1] = addr & (1<<6);
addr_str[0]=addr & (1<<7); addr_str[0] = addr & (1<<7);
addr_len=8; addr_len = 8;
}else{ } else {
addr_str[5]=addr & 1; addr_str[5] = addr & 1;
addr_str[4]=addr & (1<<1); addr_str[4] = addr & (1<<1);
addr_str[3]=addr & (1<<2); addr_str[3] = addr & (1<<2);
addr_str[2]=addr & (1<<3); addr_str[2] = addr & (1<<3);
addr_str[1]=addr & (1<<4); addr_str[1] = addr & (1<<4);
addr_str[0]=addr & (1<<5); addr_str[0] = addr & (1<<5);
addr_len=6; addr_len = 6;
} }
eprom_cs(dev, 1); eprom_cs(dev, 1);
eprom_ck_cycle(dev); eprom_ck_cycle(dev);
@ -137,7 +137,7 @@ u32 eprom_read(struct net_device *dev, u32 addr)
//I'm unsure if it is necessary, but anyway shouldn't hurt //I'm unsure if it is necessary, but anyway shouldn't hurt
eprom_w(dev, 0); eprom_w(dev, 0);
for(i=0;i<16;i++){ for (i = 0; i < 16; i++) {
//eeprom needs a clk cycle between writing opcode&adr //eeprom needs a clk cycle between writing opcode&adr
//and reading data. (eeprom outs a dummy 0) //and reading data. (eeprom outs a dummy 0)
eprom_ck_cycle(dev); eprom_ck_cycle(dev);