mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
PM / devfreq: fixed syntax errors.
If devfreq.h was included without CONFIG_PM_DEVFREQ, there has been a compiler error with an additional semicolon added. This patch removes that errorneous semicolon. Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
This commit is contained in:
parent
e0d44e8ab0
commit
a95e1f5dbc
1 changed files with 2 additions and 2 deletions
|
@ -200,12 +200,12 @@ struct devfreq_simple_ondemand_data {
|
||||||
static struct devfreq *devfreq_add_device(struct device *dev,
|
static struct devfreq *devfreq_add_device(struct device *dev,
|
||||||
struct devfreq_dev_profile *profile,
|
struct devfreq_dev_profile *profile,
|
||||||
struct devfreq_governor *governor,
|
struct devfreq_governor *governor,
|
||||||
void *data);
|
void *data)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int devfreq_remove_device(struct devfreq *devfreq);
|
static int devfreq_remove_device(struct devfreq *devfreq)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue