diff --git a/silecs-codegen/src/xml/fesa/fesa_3_0_0/fesaTemplates.py b/silecs-codegen/src/xml/fesa/fesa_3_0_0/fesaTemplates.py
index 5ef9b320dc1d5ae3f9ef926f718757a2398fa333..7f76afb43b147e92f8c03217aef3bcc43124c0e5 100644
--- a/silecs-codegen/src/xml/fesa/fesa_3_0_0/fesaTemplates.py
+++ b/silecs-codegen/src/xml/fesa/fesa_3_0_0/fesaTemplates.py
@@ -319,7 +319,7 @@ cPart2 = """
 
                 // Retrieve the PLC related to the current FESA device
                 // (from 'plcHostName' FESA field defined on that purpose).
-                Silecs::PLC* pPLC = pCluster_->getPLC(pDevice->plcHostName.get(),pDevice->parameterFile.get());
+                Silecs::PLC* pPLC = pCluster_->getPLC(pDevice->plcHostName.get());
 
                 // Update the PLC Slave registers from related FESA fields just before synchronising done at connection time
                 setPLCSlaveRegisters(pPLC, serviceLocator);
diff --git a/silecs-codegen/src/xml/migration/2_0_xto2_1_x.py b/silecs-codegen/src/xml/migration/2_0_xto2_1_x.py
index defb913f9e982d987dc407369dd00f8618bc685c..4c9dbdd2945f136bf5e8035670a81df9873396af 100644
--- a/silecs-codegen/src/xml/migration/2_0_xto2_1_x.py
+++ b/silecs-codegen/src/xml/migration/2_0_xto2_1_x.py
@@ -41,8 +41,6 @@ class Migration(MigrationBase):
             contextFesa = self._parse(fesaDocument)
             modified |= removeFesaConfigurationFieldParameterFile(contextFesa)
         self.updateFESAMakeSpecific()
-        
-        
         return modified
     
     def migrateDeployUnit(self, context, projectDir ):