diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-16 18:54:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-16 19:29:10 +0100 |
commit | dd3048b2e483f66571cfa1b2ccebb2091b9ad990 (patch) | |
tree | e8cc587d06c15befd9ab7212938bb0e05a029c23 /pci-arbiter | |
parent | 2e38095efd8cad7fe6feb95dbeb276b7a4287f05 (diff) | |
download | hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.tar.gz hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.tar.bz2 hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.zip |
Make RPC input array parameters const
This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server
side")
Diffstat (limited to 'pci-arbiter')
-rw-r--r-- | pci-arbiter/main.c | 2 | ||||
-rw-r--r-- | pci-arbiter/pci-ops.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pci-arbiter/main.c b/pci-arbiter/main.c index 9bcfb676..ec97856d 100644 --- a/pci-arbiter/main.c +++ b/pci-arbiter/main.c @@ -59,7 +59,7 @@ static mach_port_t pci_control_port; static io_return_t pci_device_open (mach_port_t reply_port, mach_msg_type_name_t reply_port_type, - dev_mode_t mode, char *name, device_t * devp, + dev_mode_t mode, const char *name, device_t * devp, mach_msg_type_name_t * devicePoly) { io_return_t err = D_SUCCESS; diff --git a/pci-arbiter/pci-ops.c b/pci-arbiter/pci-ops.c index 72720832..ef27a3cd 100644 --- a/pci-arbiter/pci-ops.c +++ b/pci-arbiter/pci-ops.c @@ -128,7 +128,7 @@ S_pci_conf_read (struct protid * master, int reg, char **data, /* Write `datalen' bytes from `data'. `amount' is updated. */ error_t -S_pci_conf_write (struct protid * master, int reg, char *data, size_t datalen, +S_pci_conf_write (struct protid * master, int reg, const char *data, size_t datalen, mach_msg_type_number_t * amount) { error_t err; |