Remove unused method

Signed-off-by: benrichard-amd <ben.richard@amd.com>
This commit is contained in:
benrichard-amd
2024-07-12 14:43:22 -05:00
committed by David Galiffi
parent 4723ecb6c9
commit 28900f88cb
-8
View File
@@ -282,14 +282,6 @@ class OmniSoC_Base:
def getblock(counter):
return counter.split('_')[0]
def expand_channels(counter, n):
ara = []
for i in range(0, n):
ara.append("{}[{}]".format(counter, i))
return ara
# Set with limited size
class LimitedSet:
def __init__(self, maxsize) -> None: