/* * \brief Client-side PCI-session interface * \author Norman Feske * \date 2008-01-28 */ /* * Copyright (C) 2008-2012 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. */ #ifndef _INCLUDE__PCI_SESSION__CLIENT_H_ #define _INCLUDE__PCI_SESSION__CLIENT_H_ #include #include namespace Pci { struct Session_client : public Genode::Rpc_client { Session_client(Session_capability session) : Genode::Rpc_client(session) { } Device_capability first_device() { return call(); } Device_capability next_device(Device_capability prev_device) { return call(prev_device); } void release_device(Device_capability device) { call(device); } }; } #endif /* _INCLUDE__PCI_SESSION__CLIENT_H_ */