genode/repos/base-hw/src/core/io_mem_session_support.cc
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

30 lines
600 B
C++

/*
* \brief Implementation of the IO_MEM session interface
* \author Martin Stein
* \date 2012-02-12
*
*/
/*
* Copyright (C) 2012-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* Genode includes */
#include <kernel/log.h>
/* core includes */
#include <io_mem_session_component.h>
using namespace Genode;
void Io_mem_session_component::_unmap_local(addr_t base, size_t size) { }
addr_t Io_mem_session_component::_map_local(addr_t base, size_t size)
{ return base; }