Commit 709b934b authored by Felipe Balbi's avatar Felipe Balbi Committed by Tony Lindgren

I2C: TWL4030: checkpatch.pl fixes for twl4030-core.c

Misc cleanup patch.
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 7add6d09
...@@ -43,8 +43,8 @@ ...@@ -43,8 +43,8 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/clk.h> #include <linux/clk.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/irq.h>
#include <asm/irq.h>
#include <asm/mach/irq.h> #include <asm/mach/irq.h>
#include <asm/arch/gpio.h> #include <asm/arch/gpio.h>
...@@ -256,7 +256,7 @@ static struct irq_chip twl4030_irq_chip = { ...@@ -256,7 +256,7 @@ static struct irq_chip twl4030_irq_chip = {
* *
* @return result of operation - 0 is success * @return result of operation - 0 is success
*/ */
int twl4030_i2c_write(u8 mod_no, u8 * value, u8 reg, u8 num_bytes) int twl4030_i2c_write(u8 mod_no, u8 *value, u8 reg, u8 num_bytes)
{ {
int ret; int ret;
int sid; int sid;
...@@ -295,6 +295,7 @@ int twl4030_i2c_write(u8 mod_no, u8 * value, u8 reg, u8 num_bytes) ...@@ -295,6 +295,7 @@ int twl4030_i2c_write(u8 mod_no, u8 * value, u8 reg, u8 num_bytes)
ret = 0; ret = 0;
return ret; return ret;
} }
EXPORT_SYMBOL(twl4030_i2c_write);
/** /**
* @brief twl4030_i2c_read - Reads a n bit register in TWL4030 * @brief twl4030_i2c_read - Reads a n bit register in TWL4030
...@@ -306,7 +307,7 @@ int twl4030_i2c_write(u8 mod_no, u8 * value, u8 reg, u8 num_bytes) ...@@ -306,7 +307,7 @@ int twl4030_i2c_write(u8 mod_no, u8 * value, u8 reg, u8 num_bytes)
* *
* @return result of operation - num_bytes is success else failure. * @return result of operation - num_bytes is success else failure.
*/ */
int twl4030_i2c_read(u8 mod_no, u8 * value, u8 reg, u8 num_bytes) int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, u8 num_bytes)
{ {
int ret; int ret;
u8 val; u8 val;
...@@ -348,6 +349,7 @@ int twl4030_i2c_read(u8 mod_no, u8 * value, u8 reg, u8 num_bytes) ...@@ -348,6 +349,7 @@ int twl4030_i2c_read(u8 mod_no, u8 * value, u8 reg, u8 num_bytes)
ret = 0; ret = 0;
return ret; return ret;
} }
EXPORT_SYMBOL(twl4030_i2c_read);
/** /**
* @brief twl4030_i2c_write_u8 - Writes a 8 bit register in TWL4030 * @brief twl4030_i2c_write_u8 - Writes a 8 bit register in TWL4030
...@@ -367,6 +369,7 @@ int twl4030_i2c_write_u8(u8 mod_no, u8 value, u8 reg) ...@@ -367,6 +369,7 @@ int twl4030_i2c_write_u8(u8 mod_no, u8 value, u8 reg)
temp_buffer[1] = value; temp_buffer[1] = value;
return twl4030_i2c_write(mod_no, temp_buffer, reg, 1); return twl4030_i2c_write(mod_no, temp_buffer, reg, 1);
} }
EXPORT_SYMBOL(twl4030_i2c_write_u8);
/** /**
* @brief twl4030_i2c_read_u8 - Reads a 8 bit register from TWL4030 * @brief twl4030_i2c_read_u8 - Reads a 8 bit register from TWL4030
...@@ -377,10 +380,11 @@ int twl4030_i2c_write_u8(u8 mod_no, u8 value, u8 reg) ...@@ -377,10 +380,11 @@ int twl4030_i2c_write_u8(u8 mod_no, u8 value, u8 reg)
* *
* @return result of operation - 0 is success * @return result of operation - 0 is success
*/ */
int twl4030_i2c_read_u8(u8 mod_no, u8 * value, u8 reg) int twl4030_i2c_read_u8(u8 mod_no, u8 *value, u8 reg)
{ {
return twl4030_i2c_read(mod_no, value, reg, 1); return twl4030_i2c_read(mod_no, value, reg, 1);
} }
EXPORT_SYMBOL(twl4030_i2c_read_u8);
/* Helper Functions */ /* Helper Functions */
...@@ -431,7 +435,8 @@ static void do_twl4030_module_irq(unsigned int irq, irq_desc_t *desc) ...@@ -431,7 +435,8 @@ static void do_twl4030_module_irq(unsigned int irq, irq_desc_t *desc)
if (retval != IRQ_HANDLED) if (retval != IRQ_HANDLED)
printk(KERN_ERR "ISR for TWL4030 module" printk(KERN_ERR "ISR for TWL4030 module"
" irq %d can't handle interrupt\n", irq); " irq %d can't handle interrupt\n",
irq);
/* /*
* Here is where we should call the unmask method, but * Here is where we should call the unmask method, but
...@@ -475,7 +480,7 @@ static int twl4030_irq_thread(void *data) ...@@ -475,7 +480,7 @@ static int twl4030_irq_thread(void *data)
if (++i2c_errors >= max_i2c_errors) { if (++i2c_errors >= max_i2c_errors) {
printk(KERN_ERR "Maximum I2C error count" printk(KERN_ERR "Maximum I2C error count"
" exceeded. Terminating %s.\n", " exceeded. Terminating %s.\n",
__FUNCTION__); __func__);
break; break;
} }
continue; continue;
...@@ -542,8 +547,10 @@ static int twl4030_detect_client(struct i2c_adapter *adapter, unsigned char sid) ...@@ -542,8 +547,10 @@ static int twl4030_detect_client(struct i2c_adapter *adapter, unsigned char sid)
} }
/* Check basic functionality */ /* Check basic functionality */
if (!(err = i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA | err = i2c_check_functionality(adapter,
I2C_FUNC_SMBUS_WRITE_BYTE))) { I2C_FUNC_SMBUS_WORD_DATA
| I2C_FUNC_SMBUS_WRITE_BYTE);
if (!err) {
pr_err("SlaveID=%d functionality check failed\n", sid); pr_err("SlaveID=%d functionality check failed\n", sid);
return err; return err;
} }
...@@ -565,7 +572,8 @@ static int twl4030_detect_client(struct i2c_adapter *adapter, unsigned char sid) ...@@ -565,7 +572,8 @@ static int twl4030_detect_client(struct i2c_adapter *adapter, unsigned char sid)
pr_info("TWL4030: TRY attach Slave %s on Adapter %s [%x]\n", pr_info("TWL4030: TRY attach Slave %s on Adapter %s [%x]\n",
twl->client_name, adapter->name, err); twl->client_name, adapter->name, err);
if ((err = i2c_attach_client(&twl->client))) { err = i2c_attach_client(&twl->client);
if (err) {
pr_err("Couldn't attach Slave %s on Adapter" pr_err("Couldn't attach Slave %s on Adapter"
"%s [%x]\n", twl->client_name, adapter->name, err); "%s [%x]\n", twl->client_name, adapter->name, err);
} else { } else {
...@@ -586,7 +594,8 @@ static int twl4030_attach_adapter(struct i2c_adapter *adapter) ...@@ -586,7 +594,8 @@ static int twl4030_attach_adapter(struct i2c_adapter *adapter)
for (i = 0; i < TWL4030_NUM_SLAVES; i++) { for (i = 0; i < TWL4030_NUM_SLAVES; i++) {
/* Check if I need to hook on to this adapter or not */ /* Check if I need to hook on to this adapter or not */
if (twl4030_modules[i].adapter_index == twl_i2c_adapter) { if (twl4030_modules[i].adapter_index == twl_i2c_adapter) {
if ((ret = twl4030_detect_client(adapter, i))) ret = twl4030_detect_client(adapter, i);
if (ret)
goto free_client; goto free_client;
} }
} }
...@@ -604,7 +613,7 @@ static int twl4030_attach_adapter(struct i2c_adapter *adapter) ...@@ -604,7 +613,7 @@ static int twl4030_attach_adapter(struct i2c_adapter *adapter)
return 0; return 0;
free_client: free_client:
pr_err("TWL_CLIENT(Idx=%d] registration failed[0x%x]\n",i,ret); pr_err("TWL_CLIENT(Idx=%d] registration failed[0x%x]\n", i, ret);
/* ignore current slave..it never got registered */ /* ignore current slave..it never got registered */
i--; i--;
...@@ -621,7 +630,8 @@ free_client: ...@@ -621,7 +630,8 @@ free_client:
static int twl4030_detach_client(struct i2c_client *client) static int twl4030_detach_client(struct i2c_client *client)
{ {
int err; int err;
if ((err = i2c_detach_client(client))) { err = i2c_detach_client(client);
if (err) {
pr_err("Client detach failed\n"); pr_err("Client detach failed\n");
return err; return err;
} }
...@@ -637,7 +647,7 @@ struct task_struct *start_twl4030_irq_thread(int irq) ...@@ -637,7 +647,7 @@ struct task_struct *start_twl4030_irq_thread(int irq)
"twl4030 irq %d", irq); "twl4030 irq %d", irq);
if (!thread) if (!thread)
pr_err("%s: could not create twl4030 irq %d thread!\n", pr_err("%s: could not create twl4030 irq %d thread!\n",
__FUNCTION__, irq); __func__, irq);
return thread; return thread;
} }
...@@ -686,9 +696,9 @@ static int power_companion_init(void) ...@@ -686,9 +696,9 @@ static int power_companion_init(void)
clk_put(osc); clk_put(osc);
switch (rate) { switch (rate) {
case 19200000 : ctrl = HFCLK_FREQ_19p2_MHZ; break; case 19200000 : ctrl = HFCLK_FREQ_19p2_MHZ; break;
case 26000000 : ctrl = HFCLK_FREQ_26_MHZ; break; case 26000000 : ctrl = HFCLK_FREQ_26_MHZ; break;
case 38400000 : ctrl = HFCLK_FREQ_38p4_MHZ; break; case 38400000 : ctrl = HFCLK_FREQ_38p4_MHZ; break;
} }
ctrl |= HIGH_PERF_SQ; ctrl |= HIGH_PERF_SQ;
...@@ -875,23 +885,13 @@ static void twl_init_irq(void) ...@@ -875,23 +885,13 @@ static void twl_init_irq(void)
set_irq_chained_handler(TWL4030_IRQNUM, do_twl4030_irq); set_irq_chained_handler(TWL4030_IRQNUM, do_twl4030_irq);
res = power_companion_init(); res = power_companion_init();
if (res < 0) { if (res < 0)
pr_err("%s[%d][%d]\n", msg, res, __LINE__); pr_err("%s[%d][%d]\n", msg, res, __LINE__);
}
} }
static int __init twl4030_init(void) static int __init twl4030_init(void)
{ {
int res; return i2c_add_driver(&twl4030_driver);
if ((res = i2c_add_driver(&twl4030_driver))) {
printk(KERN_ERR "TWL4030: Driver registration failed \n");
return res;
}
pr_info(KERN_INFO "TWL4030: Driver registration complete.\n");
return 0;
} }
static void __exit twl4030_exit(void) static void __exit twl4030_exit(void)
...@@ -903,11 +903,6 @@ static void __exit twl4030_exit(void) ...@@ -903,11 +903,6 @@ static void __exit twl4030_exit(void)
subsys_initcall(twl4030_init); subsys_initcall(twl4030_init);
module_exit(twl4030_exit); module_exit(twl4030_exit);
EXPORT_SYMBOL(twl4030_i2c_write_u8);
EXPORT_SYMBOL(twl4030_i2c_read_u8);
EXPORT_SYMBOL(twl4030_i2c_read);
EXPORT_SYMBOL(twl4030_i2c_write);
MODULE_AUTHOR("Texas Instruments, Inc."); MODULE_AUTHOR("Texas Instruments, Inc.");
MODULE_DESCRIPTION("I2C Core interface for TWL4030"); MODULE_DESCRIPTION("I2C Core interface for TWL4030");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
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