]> mj.ucw.cz Git - pciutils.git/commitdiff
HURD: Use MACH_PORT_NULL to initialize the port
authorJoan Lledó <jlledom@member.fsf.org>
Sun, 31 May 2020 07:20:33 +0000 (09:20 +0200)
committerJoan Lledó <jlledom@member.fsf.org>
Sun, 31 May 2020 07:30:45 +0000 (09:30 +0200)
lib/hurd.c

index 389ca3367e3eeebdbe42b4236793584e0ffd4346..13d88ac4c6b54b89647ff0417aa7096724517c9f 100644 (file)
@@ -73,7 +73,7 @@ static void
 hurd_init_dev(struct pci_dev *d)
 {
   d->aux = pci_malloc(d->access, sizeof(mach_port_t));
-  *((mach_port_t *) d->aux) = 0;
+  *((mach_port_t *) d->aux) = MACH_PORT_NULL;
 }
 
 /* Deallocate the port and free its space */
@@ -232,7 +232,7 @@ hurd_read(struct pci_dev *d, int pos, byte * buf, int len)
   mach_port_t device_port;
 
   nread = len;
-  if (*((mach_port_t *) d->aux) == 0)
+  if (*((mach_port_t *) d->aux) == MACH_PORT_NULL)
     {
       /* We still don't have the port for this device */
       device_port_lookup(d);
@@ -281,7 +281,7 @@ hurd_write(struct pci_dev *d, int pos, byte * buf, int len)
   mach_port_t device_port;
 
   nwrote = len;
-  if (*((mach_port_t *) d->aux) == 0)
+  if (*((mach_port_t *) d->aux) == MACH_PORT_NULL)
     {
       /* We still don't have the port for this device */
       device_port_lookup(d);