diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-04-13 12:54:07 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-04-13 12:54:07 +0200 |
commit | cd49b9614c6583290f0388e36edfeae7f733a29f (patch) | |
tree | 0bbd9486f841fda797960cd0c0f27e5a5a704e15 /libmachdev/mig-decls.h | |
parent | d28e801d18288f8f9c4f56c39d677803f5534a63 (diff) |
sync with dde-fixes
Diffstat (limited to 'libmachdev/mig-decls.h')
-rw-r--r-- | libmachdev/mig-decls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmachdev/mig-decls.h b/libmachdev/mig-decls.h index 1d137cd9..b3dc43d2 100644 --- a/libmachdev/mig-decls.h +++ b/libmachdev/mig-decls.h @@ -23,7 +23,7 @@ #include <hurd/ports.h> #include "dev_hdr.h" -extern struct port_bucket *port_bucket; +extern struct port_bucket *device_bucket; extern struct port_class *dev_class; /* Called by server stub functions. */ @@ -31,7 +31,7 @@ extern struct port_class *dev_class; static inline struct mach_device * __attribute__ ((unused)) begin_using_device_port (mach_port_t port) { - return ports_lookup_port (port_bucket, port, dev_class); + return ports_lookup_port (device_bucket, port, dev_class); } static inline void __attribute__ ((unused)) |