mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-19 15:43:56 +00:00
@ -17,6 +17,6 @@
|
||||
#include <base/capability.h>
|
||||
#include <platform_session/platform_session.h>
|
||||
|
||||
namespace Platform { typedef Genode::Capability<Session> Session_capability; }
|
||||
namespace Platform { using Session_capability = Genode::Capability<Session>; }
|
||||
|
||||
#endif /* _INCLUDE__PLATFORM_SESSION__CAPABILITY_H_ */
|
||||
|
@ -32,11 +32,11 @@ class Platform::Device : Interface, Noncopyable
|
||||
struct Irq;
|
||||
struct Io_port_range;
|
||||
|
||||
typedef Platform::Session::Device_name Name;
|
||||
using Name = Platform::Session::Device_name;
|
||||
|
||||
private:
|
||||
|
||||
typedef Device_interface::Range Range;
|
||||
using Range = Device_interface::Range;
|
||||
|
||||
::Platform::Connection &_platform;
|
||||
|
||||
|
@ -61,7 +61,7 @@ struct Platform::Session : Genode::Session
|
||||
|
||||
virtual ~Session() { }
|
||||
|
||||
typedef String<64> Device_name;
|
||||
using Device_name = String<64>;
|
||||
|
||||
/**
|
||||
* Request ROM session containing the information about available devices.
|
||||
|
Reference in New Issue
Block a user