diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2012-10-11 11:55:29 (GMT) |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-11-13 18:54:21 (GMT) |
commit | eae9a9c85b106163b293bf8b0fec44943e98677c (patch) | |
tree | 356e33fb305130fd29db13013a02d99bbcb2b5d1 /drivers | |
parent | a32415202f709f39a059f776da28248c499e0bb5 (diff) | |
download | linux-fsl-qoriq-eae9a9c85b106163b293bf8b0fec44943e98677c.tar.xz |
mfd: twl6040: Remove unused parameter for twl6040_power_up_completion()
naudint parameter has not been used, remove it.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mfd/twl6040-core.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/mfd/twl6040-core.c b/drivers/mfd/twl6040-core.c index b220aa2..a46d987 100644 --- a/drivers/mfd/twl6040-core.c +++ b/drivers/mfd/twl6040-core.c @@ -218,8 +218,7 @@ static irqreturn_t twl6040_naudint_handler(int irq, void *data) return IRQ_HANDLED; } -static int twl6040_power_up_completion(struct twl6040 *twl6040, - int naudint) +static int twl6040_power_up_completion(struct twl6040 *twl6040) { int time_left; u8 intid; @@ -241,7 +240,6 @@ static int twl6040_power_up_completion(struct twl6040 *twl6040, int twl6040_power(struct twl6040 *twl6040, int on) { int audpwron = twl6040->audpwron; - int naudint = twl6040->irq; int ret = 0; mutex_lock(&twl6040->mutex); @@ -255,7 +253,7 @@ int twl6040_power(struct twl6040 *twl6040, int on) /* use AUDPWRON line */ gpio_set_value(audpwron, 1); /* wait for power-up completion */ - ret = twl6040_power_up_completion(twl6040, naudint); + ret = twl6040_power_up_completion(twl6040); if (ret) { dev_err(twl6040->dev, "automatic power-up failed\n"); |