From b9972f684d1a13e82401fd7b77b24647fae22014 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 16 May 2016 16:09:34 -0400 Subject: [PATCH] Remove errant IBM nextscale id It erroneously matched an M4 *node* rather than FPC. Avoid by not listing the errant ID. Change-Id: Ieb4947658f65a3e9e8063b2d02e0705c03d690b1 --- pyghmi/ipmi/oem/lenovo/handler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyghmi/ipmi/oem/lenovo/handler.py b/pyghmi/ipmi/oem/lenovo/handler.py index 960f2ea9..74229240 100755 --- a/pyghmi/ipmi/oem/lenovo/handler.py +++ b/pyghmi/ipmi/oem/lenovo/handler.py @@ -267,8 +267,7 @@ class OEMHandler(generic.OEMHandler): def is_fpc(self): """True if the target is a Lenovo nextscale fan power controller """ - fpc_ids = ((20301, 32, 462), - (19046, 32, 1063)) + fpc_ids = ((19046, 32, 1063)) return (self.oemid['manufacturer_id'], self.oemid['device_id'], self.oemid['product_id']) in fpc_ids