diff options
Diffstat (limited to 'arch/parisc/hpux/sys_hpux.c')
| -rw-r--r-- | arch/parisc/hpux/sys_hpux.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/hpux/sys_hpux.c b/arch/parisc/hpux/sys_hpux.c index d88309209f5..04c2ff44439 100644 --- a/arch/parisc/hpux/sys_hpux.c +++ b/arch/parisc/hpux/sys_hpux.c @@ -475,7 +475,7 @@ int hpux_sysfs(int opcode, unsigned long arg1, unsigned long arg2)  		printk(KERN_DEBUG "len of arg1 = %d\n", len);  		if (len == 0)  			return 0; -		fsname = (char *) kmalloc(len, GFP_KERNEL); +		fsname = kmalloc(len, GFP_KERNEL);  		if ( !fsname ) {  			printk(KERN_DEBUG "failed to kmalloc fsname\n");  			return 0;  |