Commit 3fb21c64 authored by Ivo Manca's avatar Ivo Manca Committed by Jean Delvare

i2c-i801: Fix all checkpatch warnings

Fix all checkpatch warnings. No functional changes are made.
Signed-off-by: default avatarIvo Manca <pinkel@gmail.com>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent e0e8398c
...@@ -352,8 +352,7 @@ static int i801_block_transaction_byte_by_byte(union i2c_smbus_data *data, ...@@ -352,8 +352,7 @@ static int i801_block_transaction_byte_by_byte(union i2c_smbus_data *data,
do { do {
msleep(1); msleep(1);
status = inb_p(SMBHSTSTS); status = inb_p(SMBHSTSTS);
} } while ((!(status & SMBHSTSTS_BYTE_DONE))
while ((!(status & SMBHSTSTS_BYTE_DONE))
&& (timeout++ < MAX_TIMEOUT)); && (timeout++ < MAX_TIMEOUT));
result = i801_check_post(status, timeout > MAX_TIMEOUT); result = i801_check_post(status, timeout > MAX_TIMEOUT);
...@@ -451,9 +450,9 @@ static int i801_block_transaction(union i2c_smbus_data *data, char read_write, ...@@ -451,9 +450,9 @@ static int i801_block_transaction(union i2c_smbus_data *data, char read_write,
} }
/* Return negative errno on error. */ /* Return negative errno on error. */
static s32 i801_access(struct i2c_adapter * adap, u16 addr, static s32 i801_access(struct i2c_adapter *adap, u16 addr,
unsigned short flags, char read_write, u8 command, unsigned short flags, char read_write, u8 command,
int size, union i2c_smbus_data * data) int size, union i2c_smbus_data *data)
{ {
int hwpec; int hwpec;
int block = 0; int block = 0;
...@@ -522,7 +521,7 @@ static s32 i801_access(struct i2c_adapter * adap, u16 addr, ...@@ -522,7 +521,7 @@ static s32 i801_access(struct i2c_adapter * adap, u16 addr,
else else
outb_p(inb_p(SMBAUXCTL) & (~SMBAUXCTL_CRC), SMBAUXCTL); outb_p(inb_p(SMBAUXCTL) & (~SMBAUXCTL_CRC), SMBAUXCTL);
if(block) if (block)
ret = i801_block_transaction(data, read_write, size, hwpec); ret = i801_block_transaction(data, read_write, size, hwpec);
else else
ret = i801_transaction(xact | ENABLE_INT9); ret = i801_transaction(xact | ENABLE_INT9);
...@@ -534,9 +533,9 @@ static s32 i801_access(struct i2c_adapter * adap, u16 addr, ...@@ -534,9 +533,9 @@ static s32 i801_access(struct i2c_adapter * adap, u16 addr,
outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
SMBAUXCTL); SMBAUXCTL);
if(block) if (block)
return ret; return ret;
if(ret) if (ret)
return ret; return ret;
if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK)) if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
return 0; return 0;
...@@ -596,7 +595,7 @@ static const struct pci_device_id i801_ids[] = { ...@@ -596,7 +595,7 @@ static const struct pci_device_id i801_ids[] = {
{ 0, } { 0, }
}; };
MODULE_DEVICE_TABLE (pci, i801_ids); MODULE_DEVICE_TABLE(pci, i801_ids);
#if defined CONFIG_INPUT_APANEL || defined CONFIG_INPUT_APANEL_MODULE #if defined CONFIG_INPUT_APANEL || defined CONFIG_INPUT_APANEL_MODULE
static unsigned char apanel_addr; static unsigned char apanel_addr;
...@@ -700,7 +699,8 @@ static void __devinit dmi_check_onboard_devices(const struct dmi_header *dm, ...@@ -700,7 +699,8 @@ static void __devinit dmi_check_onboard_devices(const struct dmi_header *dm,
} }
#endif #endif
static int __devinit i801_probe(struct pci_dev *dev, const struct pci_device_id *id) static int __devinit i801_probe(struct pci_dev *dev,
const struct pci_device_id *id)
{ {
unsigned char temp; unsigned char temp;
int err, i; int err, i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment