summaryrefslogtreecommitdiff
path: root/utils/regtools/qeditor/backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/regtools/qeditor/backend.h')
-rw-r--r--utils/regtools/qeditor/backend.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/regtools/qeditor/backend.h b/utils/regtools/qeditor/backend.h
index c8adbc474f..b2f53c9ed5 100644
--- a/utils/regtools/qeditor/backend.h
+++ b/utils/regtools/qeditor/backend.h
@@ -363,7 +363,11 @@ public:
363 bool GetRegRef(const SocDevRef& dev, const QString& reg, SocRegRef& ref); 363 bool GetRegRef(const SocDevRef& dev, const QString& reg, SocRegRef& ref);
364 bool GetFieldRef(const SocRegRef& reg, const QString& field, SocFieldRef& ref); 364 bool GetFieldRef(const SocRegRef& reg, const QString& field, SocFieldRef& ref);
365 bool GetRegisterAddress(const QString& dev, const QString& reg, soc_addr_t& addr); 365 bool GetRegisterAddress(const QString& dev, const QString& reg, soc_addr_t& addr);
366 bool DumpAllRegisters(const QString& filename); 366 /* NOTE: does not commit writes to the backend
367 * if ignore_errors is true, the dump will continue even on errors, and the
368 * function will return false if one or more errors occured */
369 bool DumpAllRegisters(IoBackend *backend, bool ignore_errors = true);
370 bool DumpAllRegisters(const QString& filename, bool ignore_errors = true);
367 371
368private: 372private:
369 IoBackend *m_io_backend; 373 IoBackend *m_io_backend;