On Fri, 2 Nov 2007 16:59:05 -0700, Greg Kroah-Hartman <[EMAIL PROTECTED]> wrote:
> Dynamically create the kset instead of declaring it statically. > > Cc: Kay Sievers <[EMAIL PROTECTED]> > Cc: Michael Holzheu <[EMAIL PROTECTED]> > Cc: Cornelia Huck <[EMAIL PROTECTED]> > Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> > --- > arch/s390/hypfs/inode.c | 15 +++++++++------ > 1 files changed, 9 insertions(+), 6 deletions(-) arch/s390/hypfs/inode.c: In function 'hypfs_init': arch/s390/hypfs/inode.c:512: error: implicit declaration of function 'IS_PTR' Signed-off-by: Cornelia Huck <[EMAIL PROTECTED]> --- arch/s390/hypfs/inode.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/arch/s390/hypfs/inode.c =================================================================== --- linux-2.6.orig/arch/s390/hypfs/inode.c 2007-11-05 11:12:49.000000000 +0100 +++ linux-2.6/arch/s390/hypfs/inode.c 2007-11-05 14:14:46.000000000 +0100 @@ -509,7 +509,7 @@ static int __init hypfs_init(void) s390_kset = kset_create_and_register("s390", NULL, NULL, hypervisor_kset); - if (IS_PTR(s390_kset)) { + if (IS_ERR(s390_kset)) { rc = PTR_ERR(s390_kset); goto fail_sysfs; } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/