service/pcie: Fix invalid initialization argument

This commit is contained in:
ReinUsesLisp 2020-12-30 02:58:38 -03:00
parent 85cfd96f62
commit 157fc2d785

View File

@ -48,7 +48,7 @@ public:
class PCIe final : public ServiceFramework<PCIe> { class PCIe final : public ServiceFramework<PCIe> {
public: public:
explicit PCIe(Core::System& system_) : ServiceFramework{system, "pcie"} { explicit PCIe(Core::System& system_) : ServiceFramework{system_, "pcie"} {
// clang-format off // clang-format off
static const FunctionInfo functions[] = { static const FunctionInfo functions[] = {
{0, nullptr, "RegisterClassDriver"}, {0, nullptr, "RegisterClassDriver"},