summaryrefslogtreecommitdiffstats
path: root/parameter/HardwareBackSynchronizer.cpp
diff options
context:
space:
mode:
authorKevin Rocard <kevinx.rocard@intel.com>2013-01-21 15:57:45 +0100
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:32 +0100
commit5d6e05ab8d9ecc00d4542a0d76bd1ad9bd7ff88c (patch)
tree5a750e442f037e418df36d7358412c97426775b2 /parameter/HardwareBackSynchronizer.cpp
parent326e39e42a801bff4b61655ebc0e3ff759c208ff (diff)
downloadexternal_parameter-framework-5d6e05ab8d9ecc00d4542a0d76bd1ad9bd7ff88c.zip
external_parameter-framework-5d6e05ab8d9ecc00d4542a0d76bd1ad9bd7ff88c.tar.gz
external_parameter-framework-5d6e05ab8d9ecc00d4542a0d76bd1ad9bd7ff88c.tar.bz2
PFW: Back synchronisation no longer fails
BZ: 80500 As forward synchronisation, back synchronisation no longer return false if a syncer fails to backsynchronise. On subsystem restart, it will be resynchronise, so the back synchronisation failure is a warning not an error. As a result this patch also prevents PFW initialisation failure in case of unavailable subsystem. Change-Id: I21fe05747153a63cb77ed784532f3cbbf184d820 Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com> Reviewed-on: http://android.intel.com:8080/87779 Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com> Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com> Reviewed-by: Benavoli, Patrick <patrick.benavoli@intel.com> Reviewed-by: cactus <cactus@intel.com> Tested-by: cactus <cactus@intel.com>
Diffstat (limited to 'parameter/HardwareBackSynchronizer.cpp')
-rw-r--r--parameter/HardwareBackSynchronizer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/parameter/HardwareBackSynchronizer.cpp b/parameter/HardwareBackSynchronizer.cpp
index 7b09baa..661ec45 100644
--- a/parameter/HardwareBackSynchronizer.cpp
+++ b/parameter/HardwareBackSynchronizer.cpp
@@ -42,8 +42,8 @@ CHardwareBackSynchronizer::CHardwareBackSynchronizer(const CConfigurableElement*
}
// Back synchronization
-bool CHardwareBackSynchronizer::sync()
+void CHardwareBackSynchronizer::sync()
{
// Perform back synchronization
- return _backSyncerSet.sync(*_pParameterBlackboard, true, NULL);
+ _backSyncerSet.sync(*_pParameterBlackboard, true, NULL);
}