support/gen-manual-lists.py: remove unneeded arg in private function

No need to pass as argument to a function, members of the class it's in.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Samuel Martin <s.martin49@gmail.com>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yann E. MORIN 2014-07-19 15:56:09 +02:00 committed by Thomas Petazzoni
parent 910300950b
commit 34363f0df1
1 changed files with 3 additions and 3 deletions

View File

@ -384,7 +384,7 @@ class Buildroot:
return s
return None
def _get_providers(config, symbol):
def _get_providers(symbol):
providers = list()
for sym in self.config:
if not sym.is_symbol():
@ -404,7 +404,7 @@ class Buildroot:
+ " (w/ " + l + ")"
providers.append(l)
else:
providers.extend(_get_providers(config,sym))
providers.extend(_get_providers(sym))
return providers
if what == "layout":
@ -415,7 +415,7 @@ class Buildroot:
if what == "symbol":
pkg = re.sub(r"^BR2_PACKAGE_HAS_(.+)$", r"\1", symbol.get_name())
providers = _get_providers(self.config, symbol)
providers = _get_providers(symbol)
return "| {0:<20} <| {1:<32} <| {2}\n".format(pkg.lower(),
'+' + symbol.get_name() + '+',