From fe4573928fc73590373a074ef9b068c6286d9a26 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Wed, 20 May 2009 11:54:40 -0700 Subject: [PATCH] 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. --- include/spl-device.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 */ -- 2.40.0