Hi,
I tried to play around with the acpica port. I strongly used the code from `/repos/libports/src/app/acpica/os.cc` as reference. When I compile my code, I get the following error:
/.../genode/repos/demo/src/app/acpi_i2c/main.cc: In constructor ‘Acpica::Main::Main(Genode::Env&)’: /.../genode/repos/demo/src/app/acpi_i2c/main.cc:54:49: error: no match for call to ‘(Genode::Signal_handlerAcpica::Main) (Genode::Entrypoint&, Acpica::Main&, void (Acpica::Main::*)())’ sci_irq(env.ep(), *this, &Main::acpi_irq)
at the follwing code:
struct Acpica::Main { ... Main(Genode::Env &env) : env(env), sci_irq(env.ep(), *this, &Main::acpi_irq) { ...
The quite similar code from the file mentioned above compiles without problems. I cannot see what exactly I need to add/change to fix this.
The code is based of the current master branch, you can view the file at [1].
Thanks in advance, JK
[1]: https://github.com/jklmnn/genode/blob/b99456fb2a293e7e45f3f7f4d25e602ff6a205...