diff --git a/package/lean/luci-app-cpufreq/Makefile b/package/lean/luci-app-cpufreq/Makefile index b2851b27b..758d279e0 100644 --- a/package/lean/luci-app-cpufreq/Makefile +++ b/package/lean/luci-app-cpufreq/Makefile @@ -10,7 +10,7 @@ LUCI_TITLE:=LuCI for CPU Freq Setting LUCI_DEPENDS:=@arm PKG_NAME:=luci-app-cpufreq PKG_VERSION:=1 -PKG_RELEASE:=5 +PKG_RELEASE:=6 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/package/lean/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua b/package/lean/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua index 0101624ac..ff252bd51 100644 --- a/package/lean/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua +++ b/package/lean/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua @@ -30,7 +30,7 @@ s.anonymouse = true governor = s:option(ListValue, "governor", translate("CPU Scaling Governor")) for _, e in ipairs(governor_array) do - if e ~= "" then governor:value(translate(e,string.upper(e))) end + if e ~= "" then governor:value(e, translate(e,string.upper(e))) end end minfreq = s:option(ListValue, "minifreq", translate("Min Idle CPU Freq"))