diff options
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/base.py')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/base.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py index 305b57006..8c50b060d 100644 --- a/mpm/python/usrp_mpm/periph_manager/base.py +++ b/mpm/python/usrp_mpm/periph_manager/base.py @@ -54,13 +54,6 @@ class PeriphManagerBase(object): be implemented here. Motherboard specific information can be stored in separate motherboard classes derived from this class """ - # stores discovered device information in dicts - mboard_if_addrs = {} - # this information has to be provided by - # the specific periph_manager implementation - updateable_components = [] - sid_endpoints = {} - ######################################################################### # Overridables # @@ -369,7 +362,8 @@ class PeriphManagerBase(object): return list of updateable components This method does not require a claim_token in the RPC """ - return self.updateable_components + # return self.updateable_components.keys() + return [] # FIXME @no_claim def list_available_overlays(self): |