From e4c72d53d612ab9470f366fd594cfaf530590a13 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 18 Nov 2019 18:19:08 -0800 Subject: mpm: e31x: Remove superfluous code from e31x_periphs - ref_locked failure would throw a warning, even though this can happen in normal operations, and the return value of the get_ref_locked() function is all the info needed - get_fpga_type() doesn't need to be called from e31x_periphs, because it is not read from the motherboard registers (is read from the EEPROM) --- mpm/python/usrp_mpm/periph_manager/e31x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpm/python/usrp_mpm/periph_manager/e31x.py') diff --git a/mpm/python/usrp_mpm/periph_manager/e31x.py b/mpm/python/usrp_mpm/periph_manager/e31x.py index e8f775537..355945de4 100644 --- a/mpm/python/usrp_mpm/periph_manager/e31x.py +++ b/mpm/python/usrp_mpm/periph_manager/e31x.py @@ -725,7 +725,7 @@ class e31x(ZynqComponents, PeriphManagerBase): @no_rpc def _update_fpga_type(self): """Update the fpga type stored in the updateable components""" - fpga_type = self.mboard_regs_control.get_fpga_type() + fpga_type = "" # FIXME self.log.debug("Updating mboard FPGA type info to {}".format(fpga_type)) self.updateable_components['fpga']['type'] = fpga_type -- cgit v1.2.3