Commit eae9a9c8 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Samuel Ortiz

mfd: twl6040: Remove unused parameter for twl6040_power_up_completion()

naudint parameter has not been used, remove it.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent a3241520
...@@ -218,8 +218,7 @@ static irqreturn_t twl6040_naudint_handler(int irq, void *data) ...@@ -218,8 +218,7 @@ static irqreturn_t twl6040_naudint_handler(int irq, void *data)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
static int twl6040_power_up_completion(struct twl6040 *twl6040, static int twl6040_power_up_completion(struct twl6040 *twl6040)
int naudint)
{ {
int time_left; int time_left;
u8 intid; u8 intid;
...@@ -241,7 +240,6 @@ static int twl6040_power_up_completion(struct twl6040 *twl6040, ...@@ -241,7 +240,6 @@ static int twl6040_power_up_completion(struct twl6040 *twl6040,
int twl6040_power(struct twl6040 *twl6040, int on) int twl6040_power(struct twl6040 *twl6040, int on)
{ {
int audpwron = twl6040->audpwron; int audpwron = twl6040->audpwron;
int naudint = twl6040->irq;
int ret = 0; int ret = 0;
mutex_lock(&twl6040->mutex); mutex_lock(&twl6040->mutex);
...@@ -255,7 +253,7 @@ int twl6040_power(struct twl6040 *twl6040, int on) ...@@ -255,7 +253,7 @@ int twl6040_power(struct twl6040 *twl6040, int on)
/* use AUDPWRON line */ /* use AUDPWRON line */
gpio_set_value(audpwron, 1); gpio_set_value(audpwron, 1);
/* wait for power-up completion */ /* wait for power-up completion */
ret = twl6040_power_up_completion(twl6040, naudint); ret = twl6040_power_up_completion(twl6040);
if (ret) { if (ret) {
dev_err(twl6040->dev, dev_err(twl6040->dev,
"automatic power-up failed\n"); "automatic power-up failed\n");
......
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