diff --git a/repos/base/include/pd_session/client.h b/repos/base/include/pd_session/client.h index ebbca5731..b81438d74 100644 --- a/repos/base/include/pd_session/client.h +++ b/repos/base/include/pd_session/client.h @@ -31,6 +31,14 @@ struct Genode::Pd_session_client : Rpc_client int assign_parent(Parent_capability parent) override { return call(parent); } + /** + * Dummy stub for PCI-device assignment operation + * + * The assign_pci function exists only in the NOVA-specific version of the + * PD-session interface. This empty dummy stub merely exists to maintain + * API compatibility accross all base platforms so that drivers don't need + * to distinguish NOVA from non-NOVA. + */ bool assign_pci(addr_t) { return false; } };