rk3026: fix compile error without open DVFS

This commit is contained in:
chenxing
2013-09-16 17:40:45 +08:00
parent 707c7ce8cb
commit 9ac641cca3

View File

@@ -3,4 +3,9 @@
#include <plat/dvfs.h>
#ifdef CONFIG_DVFS
int rk292x_dvfs_init(void);
#else
static inline int rk292x_dvfs_init(void){ return 0; }
#endif
#endif