From: Brian Behlendorf Date: Wed, 20 May 2009 18:54:40 +0000 (-0700) Subject: SLES10 Fixes (part 5): X-Git-Tag: debian/0.7.9-2~559 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=fe4573928fc73590373a074ef9b068c6286d9a26;p=mirror_spl-debian.git SLES10 Fixes (part 5): - Fix incorrect mapping for spl_device_create()->class_device_create() which is the prefered API for 2.6.13 to 2.6.17 based kernels. --- diff --git a/include/spl-device.h b/include/spl-device.h index c82f65d..d8c2d09 100644 --- a/include/spl-device.h +++ b/include/spl-device.h @@ -39,7 +39,7 @@ typedef struct class_device spl_device; #define spl_class_create(mod, name) class_create(mod, name) #define spl_class_destroy(cls) class_destroy(cls) #define spl_device_create(cls, parent, devt, device, fmt, args...) \ - class_device_create(cls, devt, device, fmt, ## args) + class_device_create(cls, parent, devt, device, fmt, ## args) #define spl_device_destroy(cls, cls_dev, devt) \ class_device_unregister(cls_dev) @@ -60,7 +60,7 @@ typedef struct class_device spl_class_device; #define spl_device_destroy(cls, cls_dev, devt) \ class_simple_device_remove(devt) -#endif -#endif +#endif /* HAVE_CLASS_DEVICE_CREATE */ +#endif /* HAVE_DEVICE_CREATE */ #endif /* _SPL_DEVICE_H */