Thread (6 messages) flat view 6 messages, 3 authors, 2011-07-31

Re: [PATCH v6 1/1] input: add driver for Bosch Sensortec's BMA150 accelerometer

From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Date: 2011-07-30 19:17:40
Also in: lkml

Hi Eric,

On Wed, Jul 27, 2011 at 10:53:47PM +0200, Eric Andersson wrote:
+
+static int bma150_open(struct bma150_data *bma150)
+{
+	int ret;
+
+	ret = pm_runtime_set_active(&bma150->client->dev);
+	if (ret < 0)
+		return ret;
+
+	pm_runtime_enable(&bma150->client->dev);
I am pretty sure you want to call pm_runtime_enable() in bma150_probe()
so that parent controller can be suspended until somebody calls
bma150_open() and we mark the device as active (which, in turn, should
wake up its parent).
+
+	return bma150_set_mode(bma150->client, BMA150_MODE_NORMAL);
+}
+
+static void bma150_close(struct bma150_data *bma150)
+{
+	pm_runtime_disable(&bma150->client->dev);
And disable should go into bma150_remove() unless I misunderstand
runtime PM framework.
+	pm_runtime_set_suspended(&bma150->client->dev);
+	bma150_set_mode(bma150->client, BMA150_MODE_SLEEP);
I think you want to call bma150_set_mode() first and then mark device as
suspended so that parent can go to sleep as well.

Thanks.

-- 
Dmitry
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help