Skip to content

Commit

Permalink
V4L/DVB (5421): Fix suspend/resume in msp3400 and tuner
Browse files Browse the repository at this point in the history
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Jean Delvare authored and Mauro Carvalho Chehab committed Mar 27, 2007
1 parent 3284b4e commit 21b48a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
10 changes: 4 additions & 6 deletions drivers/media/video/msp3400-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -780,18 +780,16 @@ static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg)
return 0;
}

static int msp_suspend(struct device * dev, pm_message_t state)
static int msp_suspend(struct i2c_client *client, pm_message_t state)
{
struct i2c_client *client = container_of(dev, struct i2c_client, dev);

v4l_dbg(1, msp_debug, client, "suspend\n");
msp_reset(client);
return 0;
}

static int msp_resume(struct device * dev)
static int msp_resume(struct i2c_client *client)
{
struct i2c_client *client = container_of(dev, struct i2c_client, dev);

v4l_dbg(1, msp_debug, client, "resume\n");
msp_wake_thread(client);
Expand Down Expand Up @@ -996,11 +994,11 @@ static struct i2c_driver i2c_driver = {
.id = I2C_DRIVERID_MSP3400,
.attach_adapter = msp_probe,
.detach_client = msp_detach,
.suspend = msp_suspend,
.resume = msp_resume,
.command = msp_command,
.driver = {
.name = "msp3400",
.suspend = msp_suspend,
.resume = msp_resume,
},
};

Expand Down
10 changes: 4 additions & 6 deletions drivers/media/video/tuner-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -804,19 +804,17 @@ static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
return 0;
}

static int tuner_suspend(struct device *dev, pm_message_t state)
static int tuner_suspend(struct i2c_client *c, pm_message_t state)
{
struct i2c_client *c = container_of (dev, struct i2c_client, dev);
struct tuner *t = i2c_get_clientdata (c);

tuner_dbg ("suspend\n");
/* FIXME: power down ??? */
return 0;
}

static int tuner_resume(struct device *dev)
static int tuner_resume(struct i2c_client *c)
{
struct i2c_client *c = container_of (dev, struct i2c_client, dev);
struct tuner *t = i2c_get_clientdata (c);

tuner_dbg ("resume\n");
Expand All @@ -837,10 +835,10 @@ static struct i2c_driver driver = {
.attach_adapter = tuner_probe,
.detach_client = tuner_detach,
.command = tuner_command,
.suspend = tuner_suspend,
.resume = tuner_resume,
.driver = {
.name = "tuner",
.suspend = tuner_suspend,
.resume = tuner_resume,
},
};
static struct i2c_client client_template = {
Expand Down

0 comments on commit 21b48a7

Please sign in to comment.