mirror of https://gitee.com/openkylin/linux.git
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:
parent
47d5636026
commit
6371f2105a
|
@ -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;
|
||||
|
||||
|
@ -86,7 +86,7 @@ static void eprom_send_bits_string(struct net_device *dev, short b[], int len)
|
|||
{
|
||||
int i;
|
||||
|
||||
for(i=0; i<len; i++){
|
||||
for (i = 0; i < len; i++) {
|
||||
eprom_w(dev, b[i]);
|
||||
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)
|
||||
{
|
||||
struct r8192_priv *priv = ieee80211_priv(dev);
|
||||
short read_cmd[]={1,1,0};
|
||||
short read_cmd[] = {1, 1, 0};
|
||||
short addr_str[8];
|
||||
int i;
|
||||
int addr_len;
|
||||
u32 ret;
|
||||
|
||||
ret=0;
|
||||
ret = 0;
|
||||
//enable EPROM programming
|
||||
write_nic_byte_E(dev, EPROM_CMD,
|
||||
(EPROM_CMD_PROGRAM<<EPROM_CMD_OPERATING_MODE_SHIFT));
|
||||
force_pci_posting(dev);
|
||||
udelay(EPROM_DELAY);
|
||||
|
||||
if (priv->epromtype==EPROM_93c56){
|
||||
addr_str[7]=addr & 1;
|
||||
addr_str[6]=addr & (1<<1);
|
||||
addr_str[5]=addr & (1<<2);
|
||||
addr_str[4]=addr & (1<<3);
|
||||
addr_str[3]=addr & (1<<4);
|
||||
addr_str[2]=addr & (1<<5);
|
||||
addr_str[1]=addr & (1<<6);
|
||||
addr_str[0]=addr & (1<<7);
|
||||
addr_len=8;
|
||||
}else{
|
||||
addr_str[5]=addr & 1;
|
||||
addr_str[4]=addr & (1<<1);
|
||||
addr_str[3]=addr & (1<<2);
|
||||
addr_str[2]=addr & (1<<3);
|
||||
addr_str[1]=addr & (1<<4);
|
||||
addr_str[0]=addr & (1<<5);
|
||||
addr_len=6;
|
||||
if (priv->epromtype == EPROM_93c56) {
|
||||
addr_str[7] = addr & 1;
|
||||
addr_str[6] = addr & (1<<1);
|
||||
addr_str[5] = addr & (1<<2);
|
||||
addr_str[4] = addr & (1<<3);
|
||||
addr_str[3] = addr & (1<<4);
|
||||
addr_str[2] = addr & (1<<5);
|
||||
addr_str[1] = addr & (1<<6);
|
||||
addr_str[0] = addr & (1<<7);
|
||||
addr_len = 8;
|
||||
} else {
|
||||
addr_str[5] = addr & 1;
|
||||
addr_str[4] = addr & (1<<1);
|
||||
addr_str[3] = addr & (1<<2);
|
||||
addr_str[2] = addr & (1<<3);
|
||||
addr_str[1] = addr & (1<<4);
|
||||
addr_str[0] = addr & (1<<5);
|
||||
addr_len = 6;
|
||||
}
|
||||
eprom_cs(dev, 1);
|
||||
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
|
||||
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
|
||||
//and reading data. (eeprom outs a dummy 0)
|
||||
eprom_ck_cycle(dev);
|
||||
|
|
Loading…
Reference in New Issue