gluon-core: gluon.util: change find_phy argument to config table and make public
This commit is contained in:
parent
9d5c551166
commit
da22c5cf8e
@ -149,9 +149,7 @@ local function find_phy_by_macaddr(macaddr)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function find_phy(radio)
|
function find_phy(config)
|
||||||
local config = uci:get_all('wireless', radio)
|
|
||||||
|
|
||||||
if not config or config.type ~= 'mac80211' then
|
if not config or config.type ~= 'mac80211' then
|
||||||
return nil
|
return nil
|
||||||
elseif config.path then
|
elseif config.path then
|
||||||
@ -164,7 +162,7 @@ local function find_phy(radio)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function get_addresses(radio)
|
local function get_addresses(radio)
|
||||||
local phy = find_phy(radio)
|
local phy = find_phy(uci:get_all('wireless', radio))
|
||||||
if not phy then
|
if not phy then
|
||||||
return function() end
|
return function() end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user