From 077573015574f9df5edddede9a2ad709677d60db Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Thu, 4 Oct 2012 14:03:07 +0200 Subject: [PATCH] Add missing initialization of 'write_combined' --- base/src/core/include/io_mem_session_component.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/src/core/include/io_mem_session_component.h b/base/src/core/include/io_mem_session_component.h index e4c6032627..73c01f66f9 100644 --- a/base/src/core/include/io_mem_session_component.h +++ b/base/src/core/include/io_mem_session_component.h @@ -62,7 +62,8 @@ namespace Genode { Dataspace_attr(size_t s, addr_t cla, addr_t pa, bool write_combined, addr_t req_base) : - size(s), core_local_addr(cla), phys_addr(pa), req_base(req_base) { } + size(s), core_local_addr(cla), phys_addr(pa), + write_combined(write_combined), req_base(req_base) { } }; struct Io_dataspace_component : Dataspace_component