[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1316165201.3229.7.camel@odin>
Date: Fri, 16 Sep 2011 10:26:41 +0100
From: Liam Girdwood <lrg@...com>
To: Peter Ujfalusi <peter.ujfalusi@...com>
Cc: Samuel Ortiz <samuel.ortiz@...el.com>,
Dmitry Torokhov <dtor@...l.ru>,
Mark Brown <broonie@...nsource.wolfsonmicro.com>,
alsa-devel@...a-project.org, linux-kernel@...r.kernel.org,
Misael Lopez Cruz <misael.lopez@...com>,
linux-input@...r.kernel.org
Subject: Re: [PATCH 4/8] Input: twl6040-vibra: Check the selected path for
vibra
On Thu, 2011-09-15 at 15:59 +0300, Peter Ujfalusi wrote:
> The VIBSELL/R bit in the VIBCTLL/R register tells the source of the data,
> which is going to be used to drive the attached motor(s).
> Do not allow effect execution if any of the channels are set to receive
> audio data.
>
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@...com>
> ---
> drivers/input/misc/twl6040-vibra.c | 7 +++++++
> 1 files changed, 7 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/input/misc/twl6040-vibra.c b/drivers/input/misc/twl6040-vibra.c
> index cb74185..fe624f2 100644
> --- a/drivers/input/misc/twl6040-vibra.c
> +++ b/drivers/input/misc/twl6040-vibra.c
> @@ -201,6 +201,13 @@ static int vibra_play(struct input_dev *input, void *data,
> struct vibra_info *info = input_get_drvdata(input);
> int ret;
>
> + /* Do not allow effect, while the routing is set to use audio */
> + ret = twl6040_get_vibralr_status(info->twl6040);
> + if (ret & TWL6040_VIBSEL) {
> + dev_info(&input->dev, "Vibra is configured for audio\n");
> + return -EPERM;
> + }
Sorry, missed this earlier.
Probably best to return -EBUSY here otherwise it may look like a device
permissions problem to some users.
Liam
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists