diff options
-rw-r--r-- | include/xen/xenbus.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/xen/xenbus.h b/include/xen/xenbus.h index ad4fb4eab753..ef0505e72c27 100644 --- a/include/xen/xenbus.h +++ b/include/xen/xenbus.h @@ -96,10 +96,7 @@ struct xenbus_device { unsigned int spurious_threshold; }; -static inline struct xenbus_device *to_xenbus_device(struct device *dev) -{ - return container_of(dev, struct xenbus_device, dev); -} +#define to_xenbus_device(__dev) container_of_const(__dev, struct xenbus_device, dev) struct xenbus_device_id { |