dect
/
linux-2.6
Archived
13
0
Fork 0

Input: s3c2410_ts - make s3c_ts_pmops const

Fixes the following warning:
WARNING: struct dev_pm_ops should normally be const

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Sachin Kamat 2012-08-31 07:50:21 -07:00 committed by Dmitry Torokhov
parent 31b95bfb79
commit bd68dfe007
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ static int s3c2410ts_resume(struct device *dev)
return 0;
}
static struct dev_pm_ops s3c_ts_pmops = {
static const struct dev_pm_ops s3c_ts_pmops = {
.suspend = s3c2410ts_suspend,
.resume = s3c2410ts_resume,
};