aboutsummaryrefslogtreecommitdiff
path: root/devnode/devnode.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix const warningsSamuel Thibault2022-01-171-1/+1
| | | | | Now that the RPCs have const, this forces us cleaning our const-meant functions.
* Make RPC input array parameters constSamuel Thibault2022-01-161-2/+2
| | | | | This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server side")
* Add new RPC server stubs for device_intr_*Samuel Thibault2020-07-181-0/+13
| | | | | | | * boot/boot.c (ds_device_intr_register, ds_device_intr_ack): New stubs. * devnode/devnode.c (ds_device_intr_register, ds_device_intr_ack): New stubs. * eth-multiplexer/device_impl.c (ds_device_intr_register, ds_device_intr_ack): New stubs.
* devnode: fix falling back to the kernel driverJustus Winter2016-02-071-6/+15
| | | | | | * devnode/devnode.c (ds_device_open): Do not exit if opening the master device fails. (parse_opt): Likewise.
* Add devnode translatorSamuel Thibault2015-11-291-0/+359
* devnode: New directory * Makefile (prog-subdirs): Add devnode.